Bug 594624 - Reftest: Ensure content type switches are supported. r=roc

This commit is contained in:
Bas Schouten 2010-09-12 21:38:14 +02:00
Родитель d574b24e0d
Коммит f80919aebc
3 изменённых файлов: 74 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,32 @@
<html>
<head>
<style>
#TB_window
{
border: 1px solid red;
position: fixed;
top: 0;
left: 0;
}
#TB_overlay {
height: 200px;
left: 10px;
position: fixed;
top: 80px;
width: 200px;
opacity: 0.1;
background-color: green;
}
</style>
</head>
<body>
SOME CONTENT
<div id="TB_overlay">
</div>
<div id="TB_window"></div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,41 @@
<html class="reftest-wait">
<head>
<script>
function doTest() {
var x = document.getElementById('TB_overlay');
x.style.display = 'block';
document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>
<style>
#TB_window
{
border: 1px solid red;
position: fixed;
top: 0;
left: 0;
}
#TB_overlay {
height: 200px;
left: 10px;
position: fixed;
top: 80px;
width: 200px;
display: none;
opacity: 0.1;
background-color: green;
}
</style>
</head>
<body>
SOME CONTENT
<div id="TB_overlay">
</div>
<div id="TB_window"></div>
</body>
</html>

Просмотреть файл

@ -1501,3 +1501,4 @@ random-if(layersGPUAccelerated) == 581317-1.html 581317-1-ref.html
== 589672-1.html 589672-1-ref.html
== 586400-1.html 586400-1-ref.html
== 593544-1.html 593544-1-ref.html
== 594624-1.html 594624-1-ref.html