aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2011-04-14 15:57:47 -0400
committerjeresig <jeresig@gmail.com>2011-04-14 15:57:47 -0400
commit1dda994c463f01977c7126407998d61efed218a5 (patch)
tree5b53afa6b5bb05d7ed9fc68ed5eae4c442e15466
parent84712bd624a9a4eeaab9ea9c543bba494f2cc3e1 (diff)
parenta76decc47660591bb807aecf56825019da8b39fa (diff)
downloadjquery-1dda994c463f01977c7126407998d61efed218a5.tar.gz
jquery-1dda994c463f01977c7126407998d61efed218a5.zip
Merge branch '8099' of https://github.com/rwldrn/jquery. Fixes #8099.
Conflicts: test/data/testsuite.css
-rw-r--r--src/effects.js40
-rw-r--r--test/data/testsuite.css7
-rw-r--r--test/unit/effects.js22
3 files changed, 65 insertions, 4 deletions
diff --git a/src/effects.js b/src/effects.js
index 7aec83009..a43d5cb3c 100644
--- a/src/effects.js
+++ b/src/effects.js
@@ -1,6 +1,8 @@
(function( jQuery ) {
var elemdisplay = {},
+ iframe = null,
+ iframeDoc = null,
rfxtypes = /^(?:toggle|show|hide)$/,
rfxnum = /^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,
timerId,
@@ -548,20 +550,52 @@ if ( jQuery.expr && jQuery.expr.filters ) {
}
function defaultDisplay( nodeName ) {
+
if ( !elemdisplay[ nodeName ] ) {
- var elem = jQuery("<" + nodeName + ">").appendTo("body"),
- display = elem.css("display");
+
+ var elem = jQuery( "<" + nodeName + ">" ).appendTo( "body" ),
+ display = elem.css( "display" );
elem.remove();
if ( display === "none" || display === "" ) {
- display = "block";
+
+ // Get element's real default display by attaching it to a temp iframe
+ // Conritbutions from Louis Remi and Julian Aurbourg
+ // based on recommendation by Louis Remi
+
+ // No iframe to use yet, so create it
+ if ( !iframe ) {
+ iframe = document.createElement( "iframe" );
+ iframe.frameBorder = iframe.width = iframe.height = 0;
+ }
+
+ document.body.appendChild( iframe );
+
+ // Create a cacheable copy of the iframe document on first call.
+ // IE and Opera will allow us to reuse the iframeDoc without re-writing the fake html
+ // document to it, Webkit & Firefox won't allow reusing the iframe document
+ if ( !iframeDoc || !iframe.createElement ) {
+ iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;
+ iframeDoc.write( "<!doctype><html><body></body></html>" );
+ }
+
+ elem = iframeDoc.createElement( nodeName );
+
+ iframeDoc.body.appendChild( elem );
+
+ display = jQuery.css( elem, "display" );
+
+ document.body.removeChild( iframe );
}
+ // Store the correct default display
elemdisplay[ nodeName ] = display;
}
return elemdisplay[ nodeName ];
}
+
+
})( jQuery );
diff --git a/test/data/testsuite.css b/test/data/testsuite.css
index a9dd97ba4..99851eaa5 100644
--- a/test/data/testsuite.css
+++ b/test/data/testsuite.css
@@ -111,4 +111,9 @@ div#show-tests * { display: none; }
#nothiddendivchild.prct { font-size: 150%; }
/* For testing type on vml in IE #7071 */
-v\:oval { behavior:url(#default#VML); display:inline-block; } \ No newline at end of file
+v\:oval { behavior:url(#default#VML); display:inline-block; }
+
+/* 8099 changes to default styles are read correctly */
+tt { display: none; }
+sup { display: none; }
+dfn { display: none; }
diff --git a/test/unit/effects.js b/test/unit/effects.js
index 4faf61743..8b7cf4679 100644
--- a/test/unit/effects.js
+++ b/test/unit/effects.js
@@ -162,6 +162,28 @@ test("Persist correct display value", function() {
});
});
+test("show() resolves correct default display #8099", function() {
+ expect(7);
+ var tt8099 = jQuery("<tt/>").appendTo("body"),
+ dfn8099 = jQuery("<dfn/>", { html: "foo"}).appendTo("body");
+
+ equals( tt8099.css("display"), "none", "default display override for all tt" );
+ equals( tt8099.show().css("display"), "inline", "Correctly resolves display:inline" );
+
+ equals( jQuery("#foo").hide().show().css("display"), "block", "Correctly resolves display:block after hide/show" );
+
+ equals( tt8099.hide().css("display"), "none", "default display override for all tt" );
+ equals( tt8099.show().css("display"), "inline", "Correctly resolves display:inline" );
+
+ equals( dfn8099.css("display"), "none", "default display override for all dfn" );
+ equals( dfn8099.show().css("display"), "inline", "Correctly resolves display:inline" );
+
+ tt8099.remove();
+ dfn8099.remove();
+
+});
+
+
test("animate(Hash, Object, Function)", function() {
expect(1);
stop();