MozReview-Commit-ID: sPVvPpJZaz

--HG--
extra : rebase_source : a9483f0dc4df980fe3896efc05d17d965fb62566
extra : source : 9445600b11bff11823966979175999fb60383e78
This commit is contained in:
cku 2016-12-20 06:08:00 +08:00
Родитель e6edbb4877
Коммит fc016054aa
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