| Index: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
|
| index 2f144d2906df9205db1452745f54e25c8d72c0b5..14a9d4df4d23b80e8364174aa2f4576c7a2f9f85 100644
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
|
| @@ -5,13 +5,13 @@
|
| width: 100px;
|
| height: 100px;
|
| background-color: green;
|
| - -webkit-filter: invert(70%);
|
| + filter: invert(70%);
|
| }
|
| </style>
|
| <script src="../resources/text-based-repaint.js"></script>
|
| <script>
|
| function repaintTest() {
|
| - document.getElementById('composited-box').style.webkitFilter = 'invert(100%)';
|
| + document.getElementById('composited-box').style.filter = 'invert(100%)';
|
| }
|
| window.onload = runRepaintTest;
|
| </script>
|
|
|