blob: 2e8072e49f9724a0a838382670f9df3544a04c3e [file] [log] [blame]
James Grahamc81317a2016-05-09 20:46:521<!DOCTYPE html>
2<title>outerHTML: child of #document</title>
3<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
4<link rel="help" href="http://html5.org/specs/dom-parsing.html#outerhtml">
5<script src="/resources/testharness.js"></script>
6<script src="/resources/testharnessreport.js"></script>
7<div id="log"></div>
8<script>
9test(function() {
10 assert_throws("NO_MODIFICATION_ALLOWED_ERR", function() {
11 document.documentElement.outerHTML = "<html><p>FAIL: Should have thrown an error<\/p><\/html>";
12 })
13});
14</script>
15