| OLD | NEW |
| 1 <svg xmlns="http://www.w3.org/2000/svg"> | 1 <svg xmlns="http://www.w3.org/2000/svg"> |
| 2 <script> | 2 <script> |
| 3 if (window.layoutTestController) | 3 if (window.layoutTestController) |
| 4 layoutTestController.dumpAsText(); | 4 layoutTestController.dumpAsText(); |
| 5 | 5 |
| 6 function runTest() | 6 function runTest() |
| 7 { | 7 { |
| 8 document.firstChild.innerHTML = "PASS"; | 8 document.firstChild.innerHTML = "PASS"; |
| 9 } | 9 } |
| 10 | 10 |
| 11 document.addEventListener("DOMNodeInsertedIntoDocument", runTest, true); | 11 document.addEventListener("DOMNodeInsertedIntoDocument", runTest, true); |
| 12 </script> | 12 </script> |
| 13 | 13 |
| OLD | NEW |