| if (window.layoutTestController) { |
| layoutTestController.setIconDatabaseEnabled(true); |
| layoutTestController.dumpDOMAsWebArchive(); |
| layoutTestController.queueReload(); |
| <body onload="runTest()"> |
| function print(message, color) |
| var paragraph = document.createElement("div"); |
| paragraph.appendChild(document.createTextNode(message)); |
| paragraph.style.fontFamily = "monospace"; |
| paragraph.style.color = color; |
| document.getElementById("console").appendChild(paragraph); |
| <p>This test should have a green 'PASS' just above this line. If it doesn't, you failed. |
| <link rel="icon" onbeforeload="print('PASS','green');return false" href="resources/favicon.ico" type="image/x-icon"> |