Bug 1272859: Part 2. SVG mask on border area reftest r=mstange

MozReview-Commit-ID: Cl8FoMTqt2v

--HG--
extra : rebase_source : b53fe1a5131e25cfe73748c7d174f466c8f9e724
This commit is contained in:
cku 2016-05-30 01:28:15 +08:00
Родитель 3777b5cc5b
Коммит 894e7d0ebb
3 изменённых файлов: 83 добавлений и 0 удалений

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

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking: mask-image: SVG masks apply on border area</title>
<link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#the-mask-composite">
<link rel="match" href="mask-composite-3-ref.html">
<meta name="assert" content="Test checks whether SVG mask layer can be positioned on box-shadow area correctly or not.">
<svg height="0">
<mask id="mask1" x="-100" y="-100" width="300" height="300" >
<rect x="-100" y="-100" width="50" height="50" style="stroke:none; fill: #ffffff"/>
</mask>
<mask id="mask2" x="-100" y="-100" width="300" height="300" >
<circle cx="-50" cy="-50" r="25" style="stroke:none; fill: #ffffff"/>
</mask>
</svg>
<style type="text/css">
div {
background-color: red;
mask-image: url(#mask1), url(#mask2);
box-shadow: 0 0 0 100px purple;
width: 100px;
height: 100px;
position: relative;
left: 100px;
top: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

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

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking: mask-image: SVG masks apply on border area</title>
<link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#the-mask-composite">
<link rel="match" href="mask-composite-3-ref.html">
<meta name="assert" content="Test checks whether apply transfrom to a SVG mask layer works correctly or not.">
<svg height="0">
<mask id="mask1" x="-100" y="-100" width="300" height="300" >
<rect x="-100" y="-100" width="50" height="50" style="stroke:none; fill: #ffffff"/>
</mask>
<mask id="mask2" x="-100" y="-100" width="300" height="300" >
<circle cx="-50" cy="-50" r="25" style="stroke:none; fill: #ffffff"/>
</mask>
</svg>
<style type="text/css">
div.outter {
margin: 0px;
padding: 0px;
width: 200px;
height: 200px;
transform: translate(-10px, -20px);
}
div.inner {
background-color: red;
mask-image: url(#mask1), url(#mask2);
mask-repeat: no-repeat, no-repeat;
box-shadow: 0 0 0 100px purple;
position: relative;
width: 100px;
height: 100px;
left: 100px;
top: 100px;
transform: translate(10px, 20px);
}
</style>
</head>
<body>
<div class="outter">
<div class="inner"></div>
</div>
</body>
</html>

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

@ -25,6 +25,8 @@ fails == mask-image-3b.html mask-image-3-ref.html
fails == mask-image-3c.html mask-image-3-ref.html
fails == mask-image-3d.html mask-image-3-ref.html
fails == mask-image-3e.html mask-image-3-ref.html
fails == mask-image-3f.html mask-image-3-ref.html
fails == mask-image-3g.html mask-image-3-ref.html
fails == mask-image-4a.html blank.html
fails == mask-image-4b.html blank.html