Bug 1419820 - Add a reftest to test preserve-3d with transform. r=kats

MozReview-Commit-ID: IHcoPmEAtSL

--HG--
extra : rebase_source : 3c1e6733f0fff80163b83eda2b1f651c820a5f8a
This commit is contained in:
Ethan Lin 2017-11-24 16:18:26 +08:00
Родитель 79f4c6678f
Коммит a12daa8422
3 изменённых файлов: 37 добавлений и 0 удалений

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

@ -0,0 +1,6 @@
<!doctype html>
<html>
<div>
<div style="width:100px; height:100px; background-color:green"></div>
</html>

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

@ -0,0 +1,30 @@
<!doctype html>
<html>
<body>
<style>
body
{
transform-style: preserve-3d;
}
.absolute
{
position: absolute;
width: 100px;
height: 100px;
transform: translateX(0%);
background-color: red;
}
.relative
{
position: relative;
background-color: green;
width: 100px;
height: 100px;
}
</style>
<div>
<div class="absolute"></div>
<div class="relative"></div>
</div>
</body>
</html>

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

@ -2048,3 +2048,4 @@ needs-focus != 1377447-1.html 1377447-2.html
== 1406183-1.html 1406183-1-ref.html
== 1410028.html 1410028-ref.html
test-pref(font.size.systemFontScale,200) == 1412743.html 1412743-ref.html
== 1419820-1.html 1419820-1-ref.html