Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: LayoutTests/fast/dom/Element/setAttributeNode-for-existing-attribute.html

Issue 22842013: setAttributeNode() does not set the new value to an existing attribute if specified attribute is in… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modified for fixing the crash Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Element/setAttributeNode-for-existing-attribute-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function runTest() {
6 if (window.testRunner)
7 testRunner.dumpAsText();
8
9 var testElement = document.getElementById('test');
10 var testElementBgColor = testElement.style.background;
11
12 var newAttr = document.createAttribute("STYLE");
13 newAttr.value = "background-color: green";
14 testElement.setAttributeNode(newAttr);
15 var testElementBgColorAfterReset = testElement.style.background;
16
17 document.getElementById('result').innerHTML = "background-color specified wi th lowercase style attribute was: "+testElementBgColor+" and specified with uppe rcase style attribute is: "+testElementBgColorAfterReset;
18 }
19 </script>
20 </head>
21 <body onload="runTest();">
22 <div>Testcase for bug <a href="http://crbug.com/279193">279193</a>: setAttribute Node() does not set the new value to an existing attribute if specified attribut e is in a different case.\nThe issue can be manually verified by ascertaining th at a green colored block is displayed instead of a red one.</div>
23 <div id="test" style="background-color: red;"/>&nbsp;</div>
24 <div id="result"></div>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Element/setAttributeNode-for-existing-attribute-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698