diff --git a/AUTHORS.txt b/AUTHORS.txt index 9bda6ee1d..70a97e8c3 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -209,4 +209,5 @@ John Paul S. Andrew Sheppard Roman Reiß Benjy Cui +Rodrigo Rosenfeld Rosas diff --git a/src/css/defaultDisplay.js b/src/css/defaultDisplay.js index 518c7d8ae..210ad4a80 100644 --- a/src/css/defaultDisplay.js +++ b/src/css/defaultDisplay.js @@ -13,14 +13,15 @@ var iframe, */ // Called only from within defaultDisplay function actualDisplay( name, doc ) { - var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + var style, + elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), // getDefaultComputedStyle might be reliably used only on attached element - display = window.getDefaultComputedStyle ? + display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? // Use of this method is a temporary fix (more like optmization) until something better comes along, // since it was removed from specification and supported only in FF - window.getDefaultComputedStyle( elem[ 0 ] ).display : jQuery.css( elem[ 0 ], "display" ); + style.display : jQuery.css( elem[ 0 ], "display" ); // We don't have any data stored on the element, // so use "detach" method as fast way to get rid of the element