Revision 712117fd2551047eab06ca9133205d79ec24389d authored by Reza.Zakerinasab on 06 November 2017, 16:09:10 UTC, committed by Chromium WPT Sync on 06 November 2017, 16:09:10 UTC
This change removes the requirement of experimental canvas features flag
for CreateImageBitmap resize options.

Bug: 762559
Change-Id: Ifcf3a781f10f85a95ba36628b9dd76509181950b
1 parent b2cac4f
Raw File
outerhtml-01.html
<!DOCTYPE html>
<title>outerHTML: child of #document</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<link rel="help" href="http://html5.org/specs/dom-parsing.html#outerhtml">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  assert_throws("NO_MODIFICATION_ALLOWED_ERR", function() {
    document.documentElement.outerHTML = "<html><p>FAIL: Should have thrown an error<\/p><\/html>";
  })
});
</script>

back to top