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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/fixed-pos-with-abs-pos-child-scroll.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/compositing/repaint/fixed-pos-with-abs-pos-child-scroll.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/fixed-pos-with-abs-pos-child-scroll.html b/third_party/WebKit/LayoutTests/compositing/repaint/fixed-pos-with-abs-pos-child-scroll.html
deleted file mode 100644
index df40d9f0e09798d3db13ab171ecb4ef2d7d02dc4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/fixed-pos-with-abs-pos-child-scroll.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<!doctype html>
-<html>
-
-<head>
-<script src="../../resources/run-after-layout-and-paint.js"></script>
-
-<style>
- #fixed {
- position: fixed;
- bottom: 30px;
- right: 0px;
- }
- #abs {
- position: absolute;
- bottom: 0px;
- right: 0px;
- height: 90px;
- width: 360px;
- background: yellow;
- }
-</style>
-
-<script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- if (window.internals) {
- window.internals.settings.setPreferCompositingToLCDTextEnabled(false);
- }
-
- window.onload = function() {
- if (window.internals)
- window.internals.startTrackingRepaints(document);
-
- window.scrollTo(0, 500);
-
- runAfterLayoutAndPaint(function() {
- window.scrollTo(0, 0);
-
- runAfterLayoutAndPaint(function() {
- if (window.internals)
- document.getElementById('layers').textContent =
- window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS);
-
- if (window.testRunner)
- testRunner.notifyDone();
- });
- });
- }
-</script>
-</head>
-
-<body style="height: 4000px;">
- <div id="fixed">
- <div id="abs">
- Hi!
- </div>
- </div>
- <pre id="layers"></pre>
-</body>
-
-</html>

Powered by Google App Engine
This is Rietveld 408576698