Bug 770629 (Divs aren't rendered when using CSS 3D transforms) regression test for DLBI. r=mattwoodrow.

--HG--
extra : rebase_source : 7f3a2e56e99e56131852babca3405d957aca0593
This commit is contained in:
Jonathan Watt 2012-07-18 12:50:10 -04:00
parent 1c547314a0
commit a39402dab5
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Testcase for bug 770629</title>
<style>
div {
position: absolute;
left: 125px;
width: 50px;
height: 100px;
background: blue;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Testcase for bug 770629</title>
<style>
.outer {
position: absolute;
left: 100px;
-moz-transform: scale(0.5,1);
-moz-perspective: 200px;
-moz-perspective-origin: 50% 0px;
}
.inner {
width: 100px;
height: 100px;
background: blue;
-moz-transform: rotateY(0deg);
}
</style>
</head>
<body>
<div class="outer">
<div class="inner"></div>
</div>
</body>
</html>

View File

@ -39,6 +39,7 @@ fuzzy-if(d2d&&layersGPUAccelerated,52,680) fails-if(Android) == scale3d-all-sepa
== perspective-origin-1b.html perspective-origin-1a.html
random-if(Android&&!browserIsRemote) == perspective-origin-2a.html perspective-origin-2-ref.html # bug 732568
== perspective-origin-3a.html perspective-origin-3-ref.html
== perspective-origin-4a.html perspective-origin-4-ref.html
!= sorting-1a.html sorting-1-ref.html
# Parallel planes, different z depth
== sorting-2a.html sorting-2-ref.html