haikuwebkit/LayoutTests/fast/inspector-support/uncaught-dom3-exception.html

22 lines
327 B
HTML

<html>
<head>
<script>
function onload()
{
if (window.testRunner)
testRunner.dumpAsText();
document.appendChild(document.createElement("p"));
}
</script>
</head>
<body onload="onload()">
<p>
This tests that we are getting the correct message for DOM Exception 3: HIERARCHY_REQUEST_ERR.
</p>
</body>
</html>