Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/fixed-position-layer-moved.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698