Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/dom/attribute-change-on-mutate.html

Issue 6588061: Merge 79810 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | LayoutTests/fast/dom/attribute-change-on-mutate-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
1 <script> 1 <script>
2 if (window.layoutTestController) 2 if (window.layoutTestController)
3 layoutTestController.dumpAsText(); 3 layoutTestController.dumpAsText();
4 4
5 window.onload = function() 5 window.onload = function()
6 { 6 {
7 attr = document.createAttribute("attr"); 7 attr = document.createAttribute("attr");
8 attr.appendChild(document.createTextNode("FAIL")); 8 attr.appendChild(document.createTextNode("FAIL"));
9 attr.addEventListener("DOMSubtreeModified", function () { document.body.inne rHTML = this.value }, false); 9 attr.addEventListener("DOMSubtreeModified", function () { document.body.inne rHTML = this.value }, false);
10 attr.value = "PASS: Mutation events delayed during Attr modification."; 10 attr.value = "PASS: Mutation events delayed during Attr modification.";
11 } 11 }
12 </script> 12 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/attribute-change-on-mutate-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine