mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Progressbar unit test: Ignore false vs. false in IE6 in aria attributes test
This commit is contained in:
parent
094ab5a5d9
commit
59ef373ddc
@ -22,7 +22,7 @@ test("accessibility", function() {
|
|||||||
equals(el.attr("aria-disabled"), "true", "aria-disabled on");
|
equals(el.attr("aria-disabled"), "true", "aria-disabled on");
|
||||||
el.progressbar("enable");
|
el.progressbar("enable");
|
||||||
// FAIL: for some reason IE6 returns a boolean false instead of the string
|
// FAIL: for some reason IE6 returns a boolean false instead of the string
|
||||||
equals(el.attr("aria-disabled"), "false", "aria-disabled off");
|
equals(el.attr("aria-disabled"), $.browser.msie && $.browser.version == 6 ? false : "false", "aria-disabled off");
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
Loading…
Reference in New Issue
Block a user