| Index: third_party/WebKit/LayoutTests/fast/repaint/absolute-layer-specified-left-or-right-auto-width-moved-vertically.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/absolute-layer-specified-left-or-right-auto-width-moved-vertically.html b/third_party/WebKit/LayoutTests/fast/repaint/absolute-layer-specified-left-or-right-auto-width-moved-vertically.html
|
| deleted file mode 100644
|
| index 3f74013e13678b480434f25cb5d8a7b8a9af7e99..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/repaint/absolute-layer-specified-left-or-right-auto-width-moved-vertically.html
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script>
|
| -function test()
|
| -{
|
| - if (!window.testRunner || !window.internals)
|
| - return;
|
| -
|
| - testRunner.dumpAsText();
|
| - document.body.offsetTop;
|
| - internals.startTrackingRepaints(document);
|
| -
|
| - document.getElementById('left').style.top = '400px';
|
| - document.getElementById('right').style.top = '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';
|
| -}
|
| -
|
| -window.onload = test;
|
| -</script>
|
| -
|
| -<style>
|
| - #left, #right {
|
| - position: absolute;
|
| - top: 200px;
|
| - -webkit-backface-visibility: hidden;
|
| - }
|
| - #left {
|
| - left: 0px;
|
| - }
|
| - #right {
|
| - right: 0px;
|
| - }
|
| -</style>
|
| -
|
| -There should be no repaint when the divs are moved vertically.
|
| -<div id="left">Left</div>
|
| -<div id="right">Right</div>
|
| -<pre id="result"></pre>
|
|
|