OLD | NEW |
---|---|
(Empty) | |
1 <script> | |
2 if (window.testRunner) | |
3 testRunner.dumpAsText(); | |
4 | |
5 window.onload = function() | |
6 { | |
7 attr = document.createAttribute("attr"); | |
8 attr.appendChild(document.createTextNode("FAIL")); | |
9 attr.addEventListener("DOMSubtreeModified", function () { document.body.inne rHTML = this.value }, false); | |
10 attr.value = "PASS: Mutation events delayed during Attr modification."; | |
11 } | |
12 </script> | |
OLD | NEW |