4 https://bugzilla.mozilla.org/show_bug.cgi?id=387615
7 <title>Test for Bug
387615</title>
8 <script type=
"text/javascript" src=
"/MochiKit/MochiKit.js"></script>
9 <script type=
"text/javascript" src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
11 <style type=
"text/css">
12 @namespace html url
(http://www
.w3
.org
/1999/xhtml
);
14 a
[rel
="next"] { color: green
; }
15 a
[html|rel
="next"] { color: green
; }
19 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=387615">Mozilla Bug
387615</a>
20 <p id=
"display"><a>link
</a></p>
21 <div id=
"content" style=
"display: none">
25 <script class=
"testbody" type=
"text/javascript">
27 /** Test for Bug
387615 **/
29 var htmlns =
"http://www.w3.org/1999/xhtml";
31 var a = document.getElementById(
"display").firstChild;
33 function col(elt) { return getComputedStyle(elt,
"").color; }
36 a.setAttribute(
"rel",
"next");
37 var green_cs = col(a);
38 isnot(green_cs, red_cs,
"computed values for red and green are different");
40 a.setAttribute(
"rel",
"NEXT");
41 is(col(a), green_cs,
"rel attribute should match case insensitively");
43 a.removeAttribute(
"rel");
44 a.setAttributeNS(htmlns,
"html:rel",
"next");
45 is(col(a), green_cs,
"html:rel attribute should match case-sensitively");
47 a.setAttributeNS(htmlns,
"html:rel",
"NEXT");
48 is(col(a), red_cs,
"html:rel attribute should not match case-insensitively");