Tests for bug 593243. a=b

This commit is contained in:
Chris Jones 2011-03-11 17:12:11 -06:00
parent 7155968a31
commit f99a1c769a
5 changed files with 133 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<!DOCTYPE HTML>
<html>
<body style="width: 600px; height: 400px;">
<div style="position: absolute; left: 0px; top: 0px;
width=600px height=600px">
<div style="position: absolute; left: 0px; top: 0px;
width: 600px; height: 400px;
background-color: green;"></div>
<div style="position: absolute; left: 300px; top: 400px;
width: 100px; height: 100px;
background-color: red;"></div>
<div style="position: absolute; left: 0px; top: 500px;
width: 600px; height: 100px;
background-color: yellow;"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,48 @@
<!DOCTYPE HTML>
<html class="reftest-wait"
reftest-viewport-w="600" reftest-viewport-h="400"
reftest-displayport-w="800" reftest-displayport-h="1000"
reftest-no-sync-layers>
<head>
<title></title>
<script type="text/javascript">
function initialPaint() {
window.removeEventListener("MozAfterPaint", initialPaint, false);
setTimeout(moveBox, 0);
}
function moveBox() {
var box = document.getElementById("box");
box.style.left = "300px";
window.addEventListener("MozAfterPaint", repaint, false);
}
function repaint() {
window.removeEventListener("MozAfterPaint", repaint, false);
setTimeout(finish, 0);
}
function finish() {
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozAfterPaint", initialPaint, false);
</script>
</head>
<body style="width: 600px; height: 400px;">
<div style="position: absolute; left: 0px; top: 0px;
width=600px height=600px">
<div style="position: absolute; left: 0px; top: 0px;
width: 600px; height: 400px;
background-color: green;"></div>
<div id="box"
style="position: absolute; left: 0px; top: 400px;
width: 100px; height: 100px;
background-color: red;"></div>
<div style="position: absolute; left: 0px; top: 500px;
width: 600px; height: 100px;
background-color: yellow;"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,18 @@
<!DOCTYPE HTML>
<html>
<body style="width: 600px; height: 400px;">
<div style="position: absolute; left: 0px; top: 0px;
width=600px height=600px">
<div style="position: absolute; left: 0px; top: 0px;
width: 600px; height: 400px;
background-color: green;"></div>
<div style="position: absolute; left: 0px; top: 400px;
width: 100px; height: 100px;">
<input type="text" id="input" size="20" style="border: none;" value="Hello kitty"></input>
</div>
<div style="position: absolute; left: 0px; top: 500px;
width: 600px; height: 100px;
background-color: yellow;"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,48 @@
<!DOCTYPE HTML>
<html class="reftest-wait"
reftest-viewport-w="600" reftest-viewport-h="400"
reftest-displayport-w="800" reftest-displayport-h="1000"
reftest-no-sync-layers>
<head>
<title></title>
<script type="text/javascript">
function initialPaint() {
window.removeEventListener("MozAfterPaint", initialPaint, false);
setTimeout(type, 0);
}
function type() {
var box = document.getElementById("input");
box.value = "Hello kitty";
window.addEventListener("MozAfterPaint", repaint, false);
}
function repaint() {
window.removeEventListener("MozAfterPaint", repaint, false);
setTimeout(finish, 0);
}
function finish() {
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozAfterPaint", initialPaint, false);
</script>
</head>
<body style="width: 600px; height: 400px;">
<div style="position: absolute; left: 0px; top: 0px;
width=600px height=600px">
<div style="position: absolute; left: 0px; top: 0px;
width: 600px; height: 400px;
background-color: green;"></div>
<div style="position: absolute; left: 0px; top: 400px;
width: 100px; height: 100px;">
<input type="text" id="input" size="20" style="border: none;"></input>
</div>
<div style="position: absolute; left: 0px; top: 500px;
width: 600px; height: 100px;
background-color: yellow;"></div>
</div>
</body>
</html>

View File

@ -1563,6 +1563,8 @@ fails-if(cocoaWidget) == 586683-1.html 586683-1-ref.html
== 589615-1a.xhtml 589615-1-ref.html
== 589615-1b.html 589615-1-ref.html
== 589672-1.html 589672-1-ref.html
skip-if(!browserIsRemote) == 593243-1.html 593243-1-ref.html # bug 593168
skip-if(!browserIsRemote) == 593243-2.html 593243-2-ref.html # bug 593168
== 593544-1.html 593544-1-ref.html
== 594333-1.html 594333-1-ref.html
== 594624-1.html 594624-1-ref.html