aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/attributes.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/attributes.js')
-rw-r--r--test/unit/attributes.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/unit/attributes.js b/test/unit/attributes.js
index dbfa8c0c1..5d9a11139 100644
--- a/test/unit/attributes.js
+++ b/test/unit/attributes.js
@@ -1176,3 +1176,16 @@ test("contents().hasClass() returns correct values", function() {
ok( $contents.hasClass("foo"), "Found 'foo' in $contents" );
ok( !$contents.hasClass("undefined"), "Did not find 'undefined' in $contents (correctly)" );
});
+
+test("coords returns correct values in IE6/IE7, see #10828", function() {
+ expect(2);
+
+ var map = jQuery("<map />"),
+ area;
+
+ area = map.html("<area shape='rect' coords='0,0,0,0' href='#' alt='a' />").find("area");
+ equal( area.attr("coords"), "0,0,0,0", "did not retrieve coords correctly");
+
+ area = map.html("<area shape='rect' href='#' alt='a' /></map>").find("area");
+ equal( area.attr("coords"), undefined, "did not retrieve coords correctly");
+});