| <title>DOM instanceof</title> |
| 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); |
| if(document.getElementById("console") instanceof Element) |
| <p>This page tests to make sure instanceof operator for DOM nodes works properly.</p> |
| <p>If the test passes, you'll see a single 'PASS' message below.</p> |