https://bugzilla.wikimedia.org/show_bug.cgi?id=65373

--- Comment #8 from Krinkle <krinklem...@gmail.com> ---
Inside .css():

[1.8.3] jQuery.fn.css
-> curCSS

 computed = window.getComputedStyle( elem, null ),
 style = elem.style
 if ( computed ) {
   // getPropertyValue is needed for .css('filter') in IE9, see #12537
   ret = computed.getPropertyValue( name ) || computed[ name ];


[1.11.1] jQuery.fn.css
-> curCSS
  computed = .. || getStyles( elem );
  style = elem.style

  // getPropertyValue is needed for .css('filter') in IE9, see #12537
  ret = computed ? computed.getPropertyValue( name ) || computed[ name ] :
undefined;

-> getStyles
  return elem.ownerDocument.defaultView.getComputedStyle( elem, null );

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to