summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/masking/mask-serializing.html
blob: 610e5354baa80c1d6ea486e5726228d586ce1242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
    <style>
    body {
        -webkit-mask: none,repeat-x !important;
    }
    </style>
    <script type="text/javascript">
    if (window.testRunner)
        testRunner.dumpAsText();

    function init()
    {
        document.styleSheets[0].rules[0].cssText;
    }
    </script>
</head>
<body onload="init()">
    <p> This test should not assert when serializing the -webkit-mask property. </p>
</body>
</html>