| Index: LayoutTests/fast/masking/mask-serializing.html
|
| diff --git a/LayoutTests/fast/masking/mask-serializing.html b/LayoutTests/fast/masking/mask-serializing.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..610e5354baa80c1d6ea486e5726228d586ce1242
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/masking/mask-serializing.html
|
| @@ -0,0 +1,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>
|
|
|