mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
tests for bug 718236, r=roc
This commit is contained in:
parent
a103cd02e5
commit
8c2fb4d7c6
9
layout/reftests/bidi/718236-1-ref.html
Normal file
9
layout/reftests/bidi/718236-1-ref.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div>ت<span>١٣</span></div>
|
||||
</body>
|
||||
</html>
|
22
layout/reftests/bidi/718236-1.html
Normal file
22
layout/reftests/bidi/718236-1.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
// Force frame construction
|
||||
document.documentElement.offsetHeight;
|
||||
|
||||
// A dynamic change
|
||||
var x = document.getElementById("x");
|
||||
x.parentNode.removeChild(x);
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
<div>ت<span>١<span id="x"></span>٣</span></div>
|
||||
</body>
|
||||
</html>
|
9
layout/reftests/bidi/718236-2-ref.html
Normal file
9
layout/reftests/bidi/718236-2-ref.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div><span>١٣</span>ت</div>
|
||||
</body>
|
||||
</html>
|
22
layout/reftests/bidi/718236-2.html
Normal file
22
layout/reftests/bidi/718236-2.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
// Force frame construction
|
||||
document.documentElement.offsetHeight;
|
||||
|
||||
// A dynamic change
|
||||
var x = document.getElementById("x");
|
||||
x.parentNode.removeChild(x);
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
<div><span>١<span id="x"></span>٣</span>ت</div>
|
||||
</body>
|
||||
</html>
|
9
layout/reftests/bidi/718236-3-ref.html
Normal file
9
layout/reftests/bidi/718236-3-ref.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div><span>١٣</span></div>
|
||||
</body>
|
||||
</html>
|
22
layout/reftests/bidi/718236-3.html
Normal file
22
layout/reftests/bidi/718236-3.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
// Force frame construction
|
||||
document.documentElement.offsetHeight;
|
||||
|
||||
// A dynamic change
|
||||
var x = document.getElementById("x");
|
||||
x.parentNode.removeChild(x);
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
<div><span>١<span id="x"></span>٣</span></div>
|
||||
</body>
|
||||
</html>
|
@ -93,3 +93,6 @@ fails-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)&&!layersGPUAccelerated) == 61
|
||||
== 698291-1.html 698291-1-ref.html
|
||||
== 698706-1.html 698706-1-ref.html
|
||||
== 704837-1.html 704837-1-ref.html
|
||||
== 718236-1.html 718236-1-ref.html
|
||||
== 718236-2.html 718236-2-ref.html
|
||||
== 718236-3.html 718236-3-ref.html
|
||||
|
Loading…
Reference in New Issue
Block a user