| Index: LayoutTests/paint/invalidation/spv2/background-currentColor-repaint-expected.html
|
| diff --git a/LayoutTests/fast/repaint/background-currentColor-repaint.html b/LayoutTests/paint/invalidation/spv2/background-currentColor-repaint-expected.html
|
| similarity index 52%
|
| copy from LayoutTests/fast/repaint/background-currentColor-repaint.html
|
| copy to LayoutTests/paint/invalidation/spv2/background-currentColor-repaint-expected.html
|
| index d4d398a957e7ed7d6ffea7b84f98c95e2077bd8d..1fc057299d798330c2729b7b9c07927932b0b8e9 100644
|
| --- a/LayoutTests/fast/repaint/background-currentColor-repaint.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/background-currentColor-repaint-expected.html
|
| @@ -1,5 +1,4 @@
|
| <!DOCTYPE html>
|
| -<script src="resources/text-based-repaint.js"></script>
|
|
|
| <style>
|
| div {
|
| @@ -9,25 +8,14 @@ div {
|
| }
|
|
|
| #div1 {
|
| - color: blue;
|
| + color: transparent;
|
| }
|
|
|
| #div2 {
|
| - color: transparent;
|
| + color: blue;
|
| }
|
|
|
| </style>
|
|
|
| <div id="div1"></div>
|
| <div id="div2"></div>
|
| -
|
| -<script>
|
| -function repaintTest()
|
| -{
|
| - div1.style.color = 'transparent';
|
| - div2.style.color = 'blue';
|
| -}
|
| -
|
| -window.onload = runRepaintTest;
|
| -
|
| -</script>
|
|
|