mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Crashtest for bug 458453.
This commit is contained in:
parent
13238265ed
commit
41c9e25f93
24
layout/svg/crashtests/458453.html
Normal file
24
layout/svg/crashtests/458453.html
Normal file
@ -0,0 +1,24 @@
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
|
||||
var i = 0;
|
||||
|
||||
function bouncy()
|
||||
{
|
||||
var body = document.body;
|
||||
document.documentElement.removeChild(body);
|
||||
document.documentElement.appendChild(body);
|
||||
|
||||
if (++i < 30)
|
||||
setTimeout(bouncy, 1);
|
||||
else
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="bouncy();"><span id="a"></span><span style="filter: url(#a);"><span style="filter: url(#a);">B</span></span></body>
|
||||
|
||||
</html>
|
@ -54,4 +54,5 @@ load 409573-1.svg
|
||||
load 429774-1.svg
|
||||
load 441368-1.svg
|
||||
load 455314-1.xhtml
|
||||
load 458453.html
|
||||
load extref-test-1.xhtml
|
||||
|
Loading…
Reference in New Issue
Block a user