summaryrefslogtreecommitdiffstats
path: root/dom/events/test/bug415498-doc2.html
blob: e556a4e4ca929d2fb3b77a97e3f937146fadae8c (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);
}
onload = init;
</script>
</head>
<body>
  Testcase for bug 415498. This page should show an exception in Error Console on load
</body>