| Index: LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html
|
| diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html b/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html
|
| index 8b41bdf800eaf97a8138ef21a067f2fdfcb4ac00..b8843cdec05e26025c6c15b3a61d406f5cf3274b 100644
|
| --- a/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html
|
| +++ b/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html
|
| @@ -12,22 +12,22 @@
|
| <script src="../../../repaint/resources/repaint.js" type="text/javascript"></script>
|
| <script>
|
| function repaintTest() {
|
| - document.getElementById("test-initial-blank").style.webkitTextDecorationStyle = '';
|
| - document.getElementById("test-initial-explicit").style.webkitTextDecorationStyle = 'initial';
|
| - document.getElementById("test-invalid-unknown").style.webkitTextDecorationStyle = 'unknown';
|
| - document.getElementById("test-inherit-explicit").style.webkitTextDecorationStyle = 'inherit';
|
| - document.getElementById("test-repaint-parent").style.webkitTextDecorationStyle = 'double';
|
| + document.getElementById("test-initial-blank").style.textDecorationStyle = '';
|
| + document.getElementById("test-initial-explicit").style.textDecorationStyle = 'initial';
|
| + document.getElementById("test-invalid-unknown").style.textDecorationStyle = 'unknown';
|
| + document.getElementById("test-inherit-explicit").style.textDecorationStyle = 'inherit';
|
| + document.getElementById("test-repaint-parent").style.textDecorationStyle = 'double';
|
| }
|
| </script>
|
| </head>
|
| <body onload="runRepaintTest();" style="font: 20px Ahem; -webkit-font-smoothing: none; -webkit-text-stroke: 1px black; -webkit-text-fill-color: white;">
|
| <!-- Blank and 'initial' values fallbacks to 'solid' on repaintTest(). -->
|
| - <p><span id="test-initial-blank" style="text-decoration: underline; -webkit-text-decoration-style: double;">lorem ipsum</span></p>
|
| - <p><span id="test-initial-explicit" style="text-decoration: underline; -webkit-text-decoration-style: double;">lorem ipsum</span></p>
|
| + <p><span id="test-initial-blank" style="text-decoration: underline; text-decoration-style: double;">lorem ipsum</span></p>
|
| + <p><span id="test-initial-explicit" style="text-decoration: underline; text-decoration-style: double;">lorem ipsum</span></p>
|
| <!-- Unknown value is ignored and fallback to last valid value on repaintTest() -->
|
| - <p><span id="test-invalid-unknown" style="text-decoration: underline; -webkit-text-decoration-style: double;">lorem ipsum</span></p>
|
| + <p><span id="test-invalid-unknown" style="text-decoration: underline; text-decoration-style: double;">lorem ipsum</span></p>
|
| <!-- Ancestor can explicitly request 'inherit' from parent on repaintTest() -->
|
| - <p><span style="text-decoration: underline; -webkit-text-decoration-style: double;"><span id="test-inherit-explicit" style="-webkit-text-decoration-style: dashed;">lorem ipsum</span></span></p>
|
| + <p><span style="text-decoration: underline; text-decoration-style: double;"><span id="test-inherit-explicit" style="text-decoration-style: dashed;">lorem ipsum</span></span></p>
|
| <!-- Ancestor span should not inherit 'double' style from parent on repaintTest(). -->
|
| <p><span id="test-repaint-parent" style="text-decoration: underline;"><span>lorem ipsum</span></span></p>
|
| </body>
|
|
|