mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add crashtests for bug 429088
This commit is contained in:
parent
0bb771e3c9
commit
95efda0dc7
19
layout/base/crashtests/429088-1.html
Normal file
19
layout/base/crashtests/429088-1.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
|
||||
function boom()
|
||||
{
|
||||
window.addEventListener("DOMSubtreeModified", function(){}, false);
|
||||
|
||||
var MATHML_NS = "http://www.w3.org/1998/Math/MathML";
|
||||
var ms = document.createElementNS(MATHML_NS, "ms");
|
||||
document.body.appendChild(ms);
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="boom();"></body>
|
||||
</html>
|
25
layout/base/crashtests/429088-2.html
Normal file
25
layout/base/crashtests/429088-2.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
|
||||
function boom()
|
||||
{
|
||||
window.addEventListener("DOMSubtreeModified", function(){}, false);
|
||||
|
||||
var span = document.createElement("span");
|
||||
document.body.appendChild(span);
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
|
||||
span:before { content: '0'; }
|
||||
span:after { content: '1'; }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body onload="boom();"></body>
|
||||
</html>
|
@ -119,6 +119,8 @@ load 420213-1.html
|
||||
load 420651-1.xhtml
|
||||
load 423107-1.xhtml
|
||||
load 428448-1.html
|
||||
load 429088-1.html
|
||||
load 429088-2.html
|
||||
load 432752-1.svg
|
||||
load 433450-1.html
|
||||
load 444925-1.xul
|
||||
|
Loading…
Reference in New Issue
Block a user