| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body onload="runTest();"> | 2 <body onload="runTest();"> |
| 3 <span style="display: run-in" id="runIn"> | 3 <span style="display: run-in" id="runIn"> |
| 4 </span> | 4 </span> |
| 5 <span style="display: list-item" id="listItem"> | 5 <span style="display: list-item" id="listItem"> |
| 6 </span> | 6 </span> |
| 7 <div id="result"></div> | 7 <div id="result"></div> |
| 8 <script> | 8 <script> |
| 9 if (window.layoutTestController) | 9 if (window.layoutTestController) |
| 10 { | 10 { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 document.body.removeChild(runIn); | 29 document.body.removeChild(runIn); |
| 30 document.body.removeChild(listItem); | 30 document.body.removeChild(listItem); |
| 31 | 31 |
| 32 document.getElementById('result').innerHTML = "PASS"; | 32 document.getElementById('result').innerHTML = "PASS"; |
| 33 if (window.layoutTestController) | 33 if (window.layoutTestController) |
| 34 layoutTestController.notifyDone(); | 34 layoutTestController.notifyDone(); |
| 35 } | 35 } |
| 36 </script> | 36 </script> |
| 37 </body> | 37 </body> |
| 38 </html> | 38 </html> |
| OLD | NEW |