| James Graham | c81317a | 2016-05-09 20:46:52 | [diff] [blame] | 1 | <!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> |
| 9 | test(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 | |