diff options
author | John Resig <jeresig@gmail.com> | 2009-02-17 22:22:05 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-02-17 22:22:05 +0000 |
commit | 1ac087f6f90eb41fe79d46b7e1f09cc7e2125670 (patch) | |
tree | d24b900a5a4cc378ca06dca30b79d3f5acc8c59b | |
parent | b536d2ac67077aa45ed5d72bd702dab3c81e5d28 (diff) | |
download | jquery-1ac087f6f90eb41fe79d46b7e1f09cc7e2125670.tar.gz jquery-1ac087f6f90eb41fe79d46b7e1f09cc7e2125670.zip |
Updated the show() tests to work without the use of jQuery.browser (the test suite now passes 100% in IE8).
-rw-r--r-- | test/unit/core.js | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index b2ddca4c6..e7f09f62c 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1532,6 +1532,9 @@ test("show()", function() { ok( pass, "Show" ); jQuery("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div>'); + + var old = jQuery("#show-tests table").show().css("display") !== "table"; + var test = { "div" : "block", "p" : "block", @@ -1539,14 +1542,14 @@ test("show()", function() { "code" : "inline", "pre" : "block", "span" : "inline", - "table" : jQuery.browser.msie ? "block" : "table", - "thead" : jQuery.browser.msie ? "block" : "table-header-group", - "tbody" : jQuery.browser.msie ? "block" : "table-row-group", - "tr" : jQuery.browser.msie ? "block" : "table-row", - "th" : jQuery.browser.msie ? "block" : "table-cell", - "td" : jQuery.browser.msie ? "block" : "table-cell", + "table" : old ? "block" : "table", + "thead" : old ? "block" : "table-header-group", + "tbody" : old ? "block" : "table-row-group", + "tr" : old ? "block" : "table-row", + "th" : old ? "block" : "table-cell", + "td" : old ? "block" : "table-cell", "ul" : "block", - "li" : jQuery.browser.msie ? "block" : "list-item" + "li" : old ? "block" : "list-item" }; jQuery.each(test, function(selector, expected) { |