diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/generic/crashtests/309322-2.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/generic/crashtests/309322-2.html')
-rw-r--r-- | layout/generic/crashtests/309322-2.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/layout/generic/crashtests/309322-2.html b/layout/generic/crashtests/309322-2.html new file mode 100644 index 0000000000..f1450a0473 --- /dev/null +++ b/layout/generic/crashtests/309322-2.html @@ -0,0 +1,56 @@ +<html><head> +<title>Testcase2 bug 309322 - Evil testcase using multiple display:table-caption causes crash</title> +<style> +*[toggle_style],*[toggle_style1],*[toggle_style2],*[toggle_style3],*[toggle_style4]{ +display:table-caption; +} +</style> +<script> +function doe(i){ +var x=document.body.getElementsByTagName('*'); +var xl=x.length;i=i+1; +x[i-1].removeAttribute('toggle_style'); +if ((i)<xl) x[i].setAttribute('toggle_style','toggle_style'); +if ((i+1)<xl) {x[i+1].setAttribute('toggle_style1','toggle_style'); +x[i].removeAttribute('toggle_style1'); +} +if ((i+2)<xl) {x[i+2].setAttribute('toggle_style2','toggle_style'); +x[i+1].removeAttribute('toggle_style2'); +} +if ((i+3)<xl) {x[i+3].setAttribute('toggle_style3','toggle_style'); +x[i+2].removeAttribute('toggle_style3'); +} +if ((i+4)<xl) {x[i+4].setAttribute('toggle_style4','toggle_style'); +x[i+3].removeAttribute('toggle_style4'); +} +if ((i+4)==xl) { +x[i+3].removeAttribute('toggle_style4'); +} +if ((i+3)==xl) { +x[i+2].removeAttribute('toggle_style3'); +} +if ((i+2)==xl) { +x[i+1].removeAttribute('toggle_style2'); +} +if ((i+1)==xl) { +x[i].removeAttribute('toggle_style1'); +} +setTimeout(doe,20,i); +} + +function doe2(){ +var x=document.links[0].cloneNode(true); +document.links[0].appendChild(x); +} +</script> +</head> +<body onload="doe(1)"> +<button onclick="doe(1)">Clicking on this button should not crash Mozilla</button> +<table><tbody><tr><td> + +<span><br></span> +<a href="#">Galloway<span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span><span>Galloway</span></a> + +</td></tr></tbody></table> + +</body></html> |