diff options
author | bptato <nincsnevem662@gmail.com> | 2024-04-21 21:26:27 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-04-21 21:28:45 +0200 |
commit | e3d9ee2c6224cd30bf56e24f7988899e0e3985c1 (patch) | |
tree | 31116d7d751d058f32bf43313c12673423e8d8be /test/js/outerhtml.html | |
parent | ba88f015ea500bcc574b621392c721ef2c9dbcd0 (diff) | |
download | chawan-e3d9ee2c6224cd30bf56e24f7988899e0e3985c1.tar.gz |
test: add js & layout tests
(Sadly some layout tests still fail.)
Diffstat (limited to 'test/js/outerhtml.html')
-rw-r--r-- | test/js/outerhtml.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/js/outerhtml.html b/test/js/outerhtml.html new file mode 100644 index 00000000..5c30bc52 --- /dev/null +++ b/test/js/outerhtml.html @@ -0,0 +1,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> |