WebCore/manual-tests/mask-composite-missing-images.html
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 <html>
       
     2 <head>
       
     3 <style>
       
     4 .test {
       
     5     width: 200px;
       
     6     height: 200px;
       
     7     border:10px solid black;
       
     8     background-color:lime;
       
     9     -webkit-mask-image: url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found);
       
    10     -webkit-mask-position: top left, top right, bottom left, bottom right, top center, center right, bottom center, center left, center;
       
    11     -webkit-mask-origin: border;
       
    12     -webkit-mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-y, repeat-x, repeat-y, repeat;
       
    13     -webkit-mask-composite: copy;
       
    14 }
       
    15 </style>
       
    16 </head>
       
    17 <body>
       
    18 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=26084">WebKit Bug 26084: Bug 26084: Multiple missing images in webkit-mask-image prevent rendering</a></p>
       
    19 <div class="test">This text should be visible.</div>
       
    20 <p>If the test passes, you should be able to see a lime square with a black border. Inside the border, you should see the text: This text should be visible.</p>
       
    21 </body>
       
    22 </html>
       
    23