/**
 * @file 계산된 스타일.js
 * @module 계산 스타일
 */
'글로벌/창'에서 창 가져오기;

/**
 * 안전한 getComputedStyle.
 *
 * 이것은 Firefox에서 플레이어가
 * `display:none`, `getComputedStyle`이 `null`을 반환하므로
 * 이러한 경우에 플레이어가 중단되지 않도록 null 검사합니다.
 *
 * @기능
 * @param {요소} 엘
 * 계산된 스타일을 원하는 요소
 *
 * @param {문자열} 소품
 * 원하는 속성 이름
 *
 * @see https://bugzilla.mozilla.org/show_bug.cgi?id=548397
 */
function computedStyle(el, prop) {
  if (!엘 || !소품) {
    반품 '';
  }

  if (typeof window.getComputedStyle === '함수') {
    let computedStyleValue;

    {
      computedStyleValue = window.getComputedStyle(el);
    } 잡기 (e) {
      반품 '';
    }

    computedStyleValue를 반환합니까? computedStyleValue.getPropertyValue(prop) || computedStyleValue[prop] : '';
  }

  반품 '';
}

기본 computeStyle 내보내기;