| Index: LayoutTests/paint/invalidation/spv2/should-not-repaint-composited-transform.html
|
| diff --git a/LayoutTests/compositing/repaint/should-not-repaint-composited-transform.html b/LayoutTests/paint/invalidation/spv2/should-not-repaint-composited-transform.html
|
| similarity index 53%
|
| copy from LayoutTests/compositing/repaint/should-not-repaint-composited-transform.html
|
| copy to LayoutTests/paint/invalidation/spv2/should-not-repaint-composited-transform.html
|
| index 579adcc96a20b2d03f7f85c27cbf0b3052d5fd1b..9fe7f48aee85b72916e722506ccaf7437c68497f 100644
|
| --- a/LayoutTests/compositing/repaint/should-not-repaint-composited-transform.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/should-not-repaint-composited-transform.html
|
| @@ -1,3 +1,4 @@
|
| +<!-- Based on compositing/repaint/should-not-repaint-composited-transform.html -->
|
| <!DOCTYPE html>
|
| <style>
|
| #composited-box {
|
| @@ -7,11 +8,13 @@
|
| transform:translate3D(0, 0, 0);
|
| }
|
| </style>
|
| -<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
|
| +<script src="resources/paint-invalidation-test.js"></script>
|
| <script>
|
| -function repaintTest() {
|
| +window.expectedPaintInvalidationObjects = [
|
| +];
|
| +function paintInvalidationTest() {
|
| document.getElementById('composited-box').style.webkitTransform = 'translate3D(100px, 100px, 0)';
|
| }
|
| -window.onload = runRepaintTest;
|
| +window.onload = runPaintInvalidationTest;
|
| </script>
|
| <div id="composited-box"></div>
|
|
|