mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add tests
This commit is contained in:
parent
12130e0ab9
commit
351c82c45e
6
layout/reftests/bugs/334829-1-ref.xhtml
Normal file
6
layout/reftests/bugs/334829-1-ref.xhtml
Normal file
@ -0,0 +1,6 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<body>
|
||||
<div id="testDiv" style="width: 0">This is text in a div This text should appear</div>
|
||||
|
||||
</body>
|
||||
</html>
|
33
layout/reftests/bugs/334829-1a.xhtml
Normal file
33
layout/reftests/bugs/334829-1a.xhtml
Normal file
@ -0,0 +1,33 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<bindings xmlns="http://www.mozilla.org/xbl">
|
||||
<binding id="test">
|
||||
<content>
|
||||
<span><children/></span>
|
||||
</content>
|
||||
</binding>
|
||||
</bindings>
|
||||
<script type="application/x-javascript">
|
||||
function runTest() {
|
||||
var div = document.getElementById("testDiv");
|
||||
|
||||
// First we have to make sure that we've looked up the primary frame for
|
||||
// the textnode. Appending a space should do the trick.
|
||||
div.firstChild.data += " ";
|
||||
|
||||
// Now flush our reflow
|
||||
document.body.offsetWidth;
|
||||
|
||||
var node = document.createElementNS("http://www.w3.org/1999/xhtml",
|
||||
"span");
|
||||
div.appendChild(node);
|
||||
node.appendChild(document.createTextNode("This text should appear"));
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="runTest()">
|
||||
<div id="testDiv" style="width: 0; -moz-binding: url(#test)">This is text in a div</div>
|
||||
|
||||
</body>
|
||||
</html>
|
34
layout/reftests/bugs/334829-1b.xhtml
Normal file
34
layout/reftests/bugs/334829-1b.xhtml
Normal file
@ -0,0 +1,34 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<bindings xmlns="http://www.mozilla.org/xbl">
|
||||
<binding id="test">
|
||||
<content>
|
||||
<span><children/></span>
|
||||
</content>
|
||||
</binding>
|
||||
</bindings>
|
||||
<script type="application/x-javascript">
|
||||
function runTest() {
|
||||
var div = document.getElementById("testDiv");
|
||||
|
||||
// First we have to make sure that we've looked up the primary frame for
|
||||
// the previous child span. Appending text to it should do the trick.
|
||||
div.firstChild.
|
||||
appendChild(document.createTextNode("This is text in a div "));
|
||||
|
||||
// Now flush out reflow
|
||||
document.body.offsetWidth;
|
||||
|
||||
var node = document.createElementNS("http://www.w3.org/1999/xhtml",
|
||||
"span");
|
||||
div.appendChild(node);
|
||||
node.appendChild(document.createTextNode("This text should appear"));
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="runTest()">
|
||||
<div id="testDiv" style="width: 0; -moz-binding: url(#test)"><span></span></div>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -141,6 +141,8 @@ random == 328829-1.xhtml 328829-1-ref.xhtml # bug 369046 (intermittent)
|
||||
== 332360-width-ltr.html 332360-ltr-ref.html
|
||||
== 332557-1.html 332557-1-ref.html
|
||||
== 332975-1.html 332975-1-ref.html
|
||||
== 334829-1a.xhtml 334829-1-ref.xhtml
|
||||
== 334829-1b.xhtml 334829-1-ref.xhtml
|
||||
== 335628-1.html 335628-1-ref.html
|
||||
!= 335628-2.xul 335628-2-ref.xul
|
||||
== 336147-1.html 336147-1-ref.html
|
||||
|
Loading…
Reference in New Issue
Block a user