blob: 05e8c9b2cc90ade40962badf6f81b9fca45b2fe4 [file] [log] [blame]
<html>
<head>
<script>
function onload()
{
if (window.layoutTestController)
layoutTestController.dumpAsText();
// Following code generates an exception.
var p = document.createTextNode();
p.textContent = "foo";
p.splitText(10000);
}
</script>
</head>
<body onload="onload()">
<p>
This tests that we are getting the correct message for DOM Exception 1: INDEX_SIZE_ERR.
</p>
</body>
</html>