diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/base/crashtests/1428053.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
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> |