getPropertyPriority

getPropertyPriority

[1] 値の確認用 <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20color%3A%20blue%20!important%3B%0A%7D;h=%3Cp%20onclick%3D%22%0A%20%20var%20v%20%3D%20sd%20().getPropertyPriority%20('color')%3B%0A%20%20w%20(typeof%20(v)%20%2B%20'%2C%20%26%23x22%3B'%20%2B%20v%20%2B%20'%26%23x22%3B')%3B%0A%22%3EClick%20this%20paragraph%20to%20show%20the%20value%20of%20the%0A%3Ccode%3EgerPropertyPriority%20('color')%3C%2Fcode%3E%20method.%0A;p=n;x=style-element>

(名無しさん)

[2] 算出値の確認用 <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0D%0A%20%20color%3A%20blue%20!important%3B%0D%0A%7D;h=%3Cp%20onclick%3D%22%0D%0A%20%20var%20el%20%3D%20document.getElementsByTagName%20('p')%5B0%5D%3B%0D%0A%20%20if%20(getComputedStyle)%20%7B%0D%0A%20%20%20%20var%20sd%20%3D%20getComputedStyle%20(el%2C%20null)%3B%0D%0A%20%20%20%20var%20v%20%3D%20sd.getPropertyPriority%20('color')%3B%0D%0A%20%20%20%20w%20('getComputedStyle%3A%20'%20%2B%20typeof%20(v)%20%2B%20'%2C%20%26%23x22%3B'%20%2B%20v%20%2B%20'%26%23x22%3B')%3B%0D%0A%20%20%7D%0D%0A%20%20if%20(el.currentStyle)%20%7B%0D%0A%20%20%20%20var%20sd%20%3D%20el.currentStyle%3B%0D%0A%20%20%20%20var%20v%20%3D%20sd.getPropertyPriority%20('color')%3B%0D%0A%20%20%20%20w%20('currentStyle%3A%20'%20%2B%20typeof%20(v)%20%2B%20'%2C%20%26%23x22%3B'%20%2B%20v%20%2B%20'%26%23x22%3B')%3B%0D%0A%20%20%7D%0D%0A%22%3EClick%20this%20paragraph%20to%20show%20the%20value%20of%20the%0D%0A%3Ccode%3EgerPropertyPriority%20('color')%3C%2Fcode%3E%20method.%0D%0A;p=n;x=style-element>

(名無しさん)

[3] getPropertyPriority が返す値は、 Firefox 2、Opera 9 とも、 important または空文字列のようです。 getComputedStylecurerntStyleCSSStyleDeclaration では常に空文字列のようです。 (名無しさん)

[4] メソッド引数で指定された特性CSSStyleDeclaration 内で指定されていない場合や未対応の特性の場合でも、 両ブラウザとも空文字列を返すようです。 (名無しさん)