Bug 695832 - Test for perspective origin not being affected by transform origin. r=roc

This commit is contained in:
Matt Woodrow 2011-10-26 16:20:56 +13:00
Родитель 26cb281cf7
Коммит 653b0a904b
3 изменённых файлов: 20 добавлений и 0 удалений

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

@ -35,3 +35,5 @@ 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
# Different, but equivalent (for the given transform) transform origins
== rotatex-transformorigin-1a.html rotatex-transformorigin-1-ref.html

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

@ -0,0 +1,9 @@
<html>
<head>
</head>
<body>
<div style="-moz-transform: perspective(1000px) rotatex(45deg); -moz-transform-origin: top right; width: 100px; height: 100px;">
Test Text
</div>
</body>
</html>

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

@ -0,0 +1,9 @@
<html>
<head>
</head>
<body>
<div style="-moz-transform: perspective(1000px) rotatex(45deg); -moz-transform-origin: top left; width: 100px; height: 100px;">
Test Text
</div>
</body>
</html>