Bug 1313276 - Part 3. Test case. r=mstange

MozReview-Commit-ID: sPVvPpJZaz

--HG--
extra : rebase_source : 75b98120ecc8616e8be6211c3473cd27b64e3ef4
extra : intermediate-source : 22b0ddfbbd9d698359658dccc067d787651d17ba
extra : source : 9445600b11bff11823966979175999fb60383e78
This commit is contained in:
cku 2016-12-20 06:08:00 +08:00
Родитель df51b78be9
Коммит f7262dd0c3
2 изменённых файлов: 28 добавлений и 0 удалений

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

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<title>Paint clip-path onto mask layer</title>
<style type="text/css">
#inner {
width: 200px;
height: 200px;
box-sizing: border-box;
background: blue;
/* make clip-path pained on mask layer */
border: 1px solid transparent;
will-change: transform;
}
#outer {
width: 200px;
height: 200px;
clip-path: inset(0px 100px 100px 0px);
/* make it fixed so that inner div has different AGR with outter div */
position: fixed;
}
</style>
<div id="outer">
<div id="inner"></div>
</div>
</html>

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

@ -464,3 +464,4 @@ default-preferences
== paint-on-maskLayer-1a.html paint-on-maskLayer-1-ref.html
== paint-on-maskLayer-1b.html paint-on-maskLayer-1-ref.html
== paint-on-maskLayer-1c.html paint-on-maskLayer-1-ref.html