Index: third_party/WebKit/LayoutTests/compositing/always-composite-fixed-position-when-descendants-composite.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/always-composite-fixed-position-when-descendants-composite.html b/third_party/WebKit/LayoutTests/compositing/always-composite-fixed-position-when-descendants-composite.html |
deleted file mode 100644 |
index a972d50bdf8e6100bca9d800eb74823d801c4ce9..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/compositing/always-composite-fixed-position-when-descendants-composite.html |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-<!doctype HTML> |
-Any errors will show below this line. |
-<!-- Having a composited child should always be a position:fixed compositing trigger --> |
-<div style="position: fixed; width: 100px; height: 100px; background: lightgray"> |
- <div style="will-change: transform; margin: 50px; width: 50px; height: 50px; background: lightblue"> |
- </div> |
-</div> |
-<script src="../resources/testharness.js"></script> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
-if (window.internals) { |
- var layers = JSON.parse(internals.layerTreeAsText(document)); |
- assert_true(layers["layers"].length == 3); |
-} |
-</script> |