mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 18:47:53 +00:00
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:
parent
1c547314a0
commit
a39402dab5
20
layout/reftests/transform-3d/perspective-origin-4-ref.html
Normal file
20
layout/reftests/transform-3d/perspective-origin-4-ref.html
Normal 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>
|
29
layout/reftests/transform-3d/perspective-origin-4a.html
Normal file
29
layout/reftests/transform-3d/perspective-origin-4a.html
Normal 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>
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user