Bug 701656 - Add reftests. r=roc

This commit is contained in:
Matt Woodrow 2011-11-17 16:45:46 +13:00
Родитель 0244825cc4
Коммит 8c89bf6706
4 изменённых файлов: 50 добавлений и 0 удалений

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

@ -0,0 +1,14 @@
<html>
<head>
<style type="text/css">
#parent {
width: 100px;
height: 100px;
background-color: #00FF00;
}
</style>
</head>
<body>
<div id="parent"></div>
</body>
</html>

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

@ -0,0 +1,9 @@
<html>
<head>
</head>
<body>
<div style="-moz-transform: rotatex(90deg); -moz-transform-style: preserve-3d; opacity: 0.9999;">
<div style="-moz-transform: rotatex(90deg); width: 100px; height: 100px; background-color: #00FF00"></div>
</div>
</body>
</html>

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

@ -17,6 +17,7 @@ fails == preserve3d-1a.html preserve3d-1-ref.html
== preserve3d-2c.html preserve3d-2-ref.html
== preserve3d-2d.html preserve3d-2-ref.html
== preserve3d-3a.html preserve3d-3-ref.html
== preserve3d-4a.html green-rect.html
== scale3d-z.html scalez-1-ref.html
== scale3d-all.html scale3d-1-ref.html
== scale3d-xz.html scale3d-2-ref.html
@ -36,5 +37,6 @@ fails == preserve3d-1a.html preserve3d-1-ref.html
== sorting-2a.html sorting-2-ref.html
# Parallel planes, same z depth (shouldn't be sorted!)
== sorting-2b.html sorting-2-ref.html
== sorting-3a.html green-rect.html
# Different, but equivalent (for the given transform) transform origins
== rotatex-transformorigin-1a.html rotatex-transformorigin-1-ref.html

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

@ -0,0 +1,25 @@
<html>
<head>
<style type="text/css">
#parent {
-moz-transform-style: preserve-3d;
-moz-transform: rotateX(180deg);
width: 100px;
height: 100px;
background-color: #00FF00;
}
#child {
width: 100px;
height: 100px;
background-color: red;
-moz-transform: translatez(10px);
}
</style>
</head>
<body>
<div id="parent">
<div id="child"></div>
</div>
</body>
</html>