about summary refs log blame commit diff stats
path: root/test/js/outerhtml.html
blob: 5c30bc52b8d1098a8c6d24a29f48f75acc2af759 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                  
<!doctype html>
<title>innerHTML test</title>
<div id="test">Fail</div>
<script>
const div = document.getElementById("test");
if (div.outerHTML != '<div id="test">Fail</div>')
	throw new TypeError("invalid outerHTML " + div.outerHTML);
div.textContent = "Success";
</script>