diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /dom/base/crashtests/1428053.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/crashtests/1428053.html')
-rw-r--r-- | dom/base/crashtests/1428053.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dom/base/crashtests/1428053.html b/dom/base/crashtests/1428053.html new file mode 100644 index 0000000000..d40496da6d --- /dev/null +++ b/dom/base/crashtests/1428053.html @@ -0,0 +1,23 @@ +<script> + try { o1 = document.createElement("h1") } catch (e) {} + try { o2 = document.createElement("slot") } catch (e) {} + try { o3 = document.createElement("o") } catch (e) {} + try { document.documentElement.appendChild(o1) } catch (e) {} + try { document.documentElement.appendChild(o3) } catch (e) {} + try { o4 = o1.attachShadow({mode: "open"}) } catch (e) {} + try { o5 = new Range() } catch (e) {} + try { o6 = new MutationObserver(function(arg_0, arg_1) { + try { o4.append("", o2, "") } catch (e) {}; + }) } catch (e) {} + try { o5.selectNode(o3); } catch (e) {} + try { customElements.define("custom-element_0", class extends HTMLElement { + connectedCallback() { + try { this.offsetHeight } catch (e) {} + } + }) } catch (e) {} + try { o8 = document.createElement("custom-element_0") } catch (e) {} + try { document.documentElement.appendChild(o8) } catch (e) {} + try { o6.observe(document, { "childList": [""] }); } catch (e) {} + try { document.replaceChild(o5.endContainer, document.documentElement); } catch (e) {} + try { o1.insertAdjacentHTML("afterBegin", "<</#"); } catch (e) {} +</script> |