| Index: third_party/WebKit/LayoutTests/fast/repaint/fixed-position-layer-moved.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/fixed-position-layer-moved.html b/third_party/WebKit/LayoutTests/fast/repaint/fixed-position-layer-moved.html
|
| deleted file mode 100644
|
| index f9d5bd56a541670f0f0b391a63fa81e3eff4533b..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/repaint/fixed-position-layer-moved.html
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script>
|
| -window.onload = function()
|
| -{
|
| - if (!window.testRunner || !window.internals)
|
| - return;
|
| -
|
| - testRunner.dumpAsText();
|
| - document.body.offsetTop;
|
| - internals.startTrackingRepaints(document);
|
| -
|
| - document.getElementById('a').style.top = '400px';
|
| - document.getElementById('b').style.left = '400px';
|
| -
|
| - document.body.offsetTop;
|
| - var layerTree = internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS);
|
| - window.internals.stopTrackingRepaints(document);
|
| - document.getElementById('result').textContent = layerTree.indexOf('repaint') == -1 ? 'SUCCESS' : 'FAIL';
|
| -};
|
| -</script>
|
| -
|
| -<style>
|
| -.fixed {
|
| - position: fixed;
|
| - top: 200px;
|
| - left: 200px;
|
| - width: 100px;
|
| - -webkit-backface-visibility: hidden;
|
| -}
|
| -</style>
|
| -
|
| -There should be no repaint when the divs are moved.
|
| -<div class="fixed" id="a">A</div>
|
| -<div class="fixed" id="b">B</div>
|
| -<pre id="result"></pre>
|
|
|