| 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); |
| var doc = document.implementation.createHTMLDocument(""); |
| doc.body.parentNode.removeChild(doc.body); |
| print("PASS: you didn't crash.", "green"); |
| <p>This page test for a crash when setting the dir property of an HTML document with no body.</p> |
| <p>If the test passes, you'll see a 'PASS' message below.</p> |