Bug 1405881 - Add crashtest; r=hiro

MozReview-Commit-ID: BzM8KRn2MWv

--HG--
extra : rebase_source : 288825a0262a051ba379cdd74838c358f70901de
This commit is contained in:
Manish Goregaokar 2017-11-06 11:30:49 -08:00
Родитель b8a28fb4e0
Коммит b5061541d9
2 изменённых файлов: 25 добавлений и 0 удалений

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

@ -0,0 +1,24 @@
<style type="text/css">
#container {
height: 300px;
width: 300px;
}
#box {
height: 100px;
width: 100px;
background: red;
animation: 2s anim;
}
@keyframes anim {
from {
-moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 10%, 10%, 0, 1);
}
to {
-moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 40%, 40%, 0, 1);
}
}
</style>
<div id=container>
<div id=box></div>
</div>

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

@ -1,2 +1,3 @@
load 1402183-1.html
skip-if(!(stylo||styloVsGecko)||Android) load 1407470-1.html
load 1405881-1.html