Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / masking / mask-repeat-round-one-tile-crash.html
blobe9975b1b3517269b9c6a0c556e34280101cab234
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #theDiv {
6 width: 100px;
7 height: 100px;
8 -webkit-mask-image: url(resources/circle.png);
9 -webkit-mask-repeat: round;
10 /* the mask-size is at least twice as big as the div */
11 -webkit-mask-size: 201px 201px;
12 background-color: green;
14 </style>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 </script>
19 </head>
20 <body>
21 <p>This test PASSES if it doesn't CRASH.</p>
22 <div id="theDiv" />
23 </body>
24 </html>