summaryrefslogtreecommitdiffstats
path: root/dom/events/test/bug415498-doc1.html
blob: e8fbca6c9a95f9f70b1199aa22fbf39529b7c4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
function init() {
  // This will throw a HierarchyRequestError exception
  var doc = document.implementation.createDocument(null, 'DOC', null);
  doc.documentElement.appendChild(doc);
}
window.addEventListener("load", init);
</script>
</head>
<body>
  Testcase for bug 415498. This page should show an exception in Error Console on load
</body>