2008-04-10 21:35:56 +04:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function init() {
|
2012-04-26 20:42:26 +04:00
|
|
|
// This will throw a HierarchyRequestError exception
|
2008-04-10 21:35:56 +04:00
|
|
|
var doc = document.implementation.createDocument(null, 'DOC', null);
|
|
|
|
doc.documentElement.appendChild(doc);
|
|
|
|
}
|
2017-01-17 13:50:25 +03:00
|
|
|
window.addEventListener("load", init);
|
2008-04-10 21:35:56 +04:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
Testcase for bug 415498. This page should show an exception in Error Console on load
|
|
|
|
</body>
|