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> |