Bug 1224433 - Part 1: Add reftest. r=roc

--HG--
extra : rebase_source : 1636c45e0f32ae22d4c38f90f886e7f1290a8d94
This commit is contained in:
Thinker K.F. Li 2016-02-12 11:35:03 +13:00
parent 8e3a5c71be
commit c731d0ed0c
3 changed files with 160 additions and 0 deletions

View File

@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Change a layer's transform making negative w component.</title>
<style>
body {
background-color: white;
overflow: hidden;
}
#outer {
perspective: 500px;
perspective-origin: 350px 250px;
width: 700px;
height: 500px;
display: block;
top: 10px;
left: 10px;
position: absolute;
overflow: visible;
}
#container1 {
transform-style: preserve-3d;
transform: translateX(-50px) translateZ(350px) rotateY(-90deg);
}
#container2 {
transform-style: preserve-3d;
transform: translateY(-200px) translateX(50px) translateZ(350px) rotateY(90deg);
}
#scale {
transform-style: preserve-3d;
}
.negw {
transform: translateZ(1px);
}
.posw {
transform: translateZ(-500px);;
}
#dummy {
transform-style: preserve-3d;
transform: translateY(150px);
}
#square1, #square2 {
background-color: red;
width: 700px;
height: 200px;
}
</style>
<body>
<div id="outer">
<div id="scale" class="posw">
<div id="dummy">
<div id="container1">
<div id="square1"></div>
</div>
<div id="container2">
<div id="square2"></div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en" class="reftest-wait">
<meta charset="utf-8">
<title>Change a layer's transform making negative w component.</title>
<style>
body {
background-color: white;
overflow: hidden;
}
#outer {
perspective: 500px;
perspective-origin: 350px 250px;
width: 700px;
height: 500px;
display: block;
top: 10px;
left: 10px;
position: absolute;
overflow: visible;
}
#container1 {
transform-style: preserve-3d;
transform: translateX(-50px) translateZ(350px) rotateY(-90deg);
}
#container2 {
transform-style: preserve-3d;
transform: translateY(-200px) translateX(50px) translateZ(350px) rotateY(90deg);
}
#scale {
transform-style: preserve-3d;
}
.negw {
transform: translateZ(1px);
}
.posw {
transform: translateZ(-500px);;
}
#dummy {
transform-style: preserve-3d;
transform: translateY(150px);
}
#square1, #square2 {
background-color: red;
width: 700px;
height: 200px;
}
</style>
<body>
<div id="outer">
<div id="scale" class="negw">
<div id="dummy">
<div id="container1">
<div id="square1"></div>
</div>
<div id="container2">
<div id="square2"></div>
</div>
</div>
</div>
</div>
<script>
var scale = document.getElementById("scale");
function doTest() {
scale.className = "posw";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>

View File

@ -74,3 +74,4 @@ pref(layers.single-tile.enabled,false) != fast-scrolling.html about:blank
== background-position-1.html background-position-1-ref.html
== zero-opacity-animation.html about:blank
== zero-opacity-text.html about:blank
== negative-w-component.html negative-w-component-ref.html