Source code
Revision control
Copy as Markdown
Other Tools
<!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>
</body>