mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Test for bug 841205
This commit is contained in:
parent
0acc905b8e
commit
880ff19a9f
25
content/base/crashtests/841205.html
Normal file
25
content/base/crashtests/841205.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
var b = document.createElement('bdi');
|
||||
var c = document.createElement('div');
|
||||
var d = document.createElement('div');
|
||||
|
||||
b.appendChild(c);
|
||||
c.appendChild(d);
|
||||
b.removeChild(c);
|
||||
d.appendChild(b);
|
||||
document.createElement('div').appendChild(c);
|
||||
b.appendChild(document.createElement('div'));
|
||||
|
||||
b.setAttribute('dir', "auto");
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();"></body>
|
||||
</html>
|
@ -129,3 +129,4 @@ load 827190.html
|
||||
load 828054.html
|
||||
load 829428.html
|
||||
load 836890.html
|
||||
load 841205.html
|
||||
|
Loading…
Reference in New Issue
Block a user