blob: d7a90b7716407982af1d6169e481d253559c04d1 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<script>
description('importNode should throw informative errors for unsupported node types');
var doc = document.implementation.createHTMLDocument('');
shouldThrow("document.importNode(doc)")
var shadow = document.createElement('div').createShadowRoot();
shouldThrow("document.importNode(shadow)")
</script>