7 testRunner
.dumpAsText();
9 var testElement
= document
.getElementById('test');
10 var testElementBgColor
= testElement
.style
.backgroundColor
;
12 var newAttr
= document
.createAttribute("STYLE");
13 newAttr
.value
= "background-color: green";
14 testElement
.setAttributeNode(newAttr
);
15 var testElementBgColorAfterReset
= testElement
.style
.backgroundColor
;
17 document
.getElementById('result').innerHTML
= "background-color specified with lowercase style attribute was: "+testElementBgColor
+" and specified with uppercase style attribute is: "+testElementBgColorAfterReset
;
21 <body onload=
"runTest();">
22 <div>Testcase for bug
<a href=
"http://crbug.com/279193">279193</a>: setAttributeNode() does not set the new value to an existing attribute if specified attribute is in a different case.\nThe issue can be manually verified by ascertaining that a green colored block is displayed instead of a red one.
</div>
23 <div id=
"test" style=
"background-color: red;"/> </div>
24 <div id=
"result"></div>