summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/inspector-support/uncaught-dom3-exception.html
blob: b975f53e9b6415f7fee0db778eeb255204447a85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script>

function onload()
{
    if (window.testRunner)
        testRunner.dumpAsText();
    document.appendChild(document.createElement('x'));
}

</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>