Index: third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter.html |
deleted file mode 100644 |
index fdf0757da4bd33c39f3e869c06adb6080e7934a5..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<html> |
-<head> |
- <style> |
- .fixed { |
- position: fixed; |
- width: 10px; |
- height: 10px; |
- backdrop-filter: grayscale(100%); |
- } |
- </style> |
- |
- <script type="text/javascript"> |
- if (window.internals) |
- window.internals.settings.setPreferCompositingToLCDTextEnabled(true); |
- |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- |
- window.addEventListener("load", function() { |
- document.getElementById("layertree").innerText = window.internals.layerTreeAsText(document); |
- }, false); |
- } |
- </script> |
-</head> |
- |
-<body> |
- <div style="height: 1000px"> |
- <pre id="layertree"></pre> |
- </div> |
- |
- <!-- Neither of the following elements gets its own layer. --> |
- <div class="fixed" style="z-index: -1"></div> |
- <div class="fixed" style="z-index: -1; top: -100px"></div> |
- <div class="fixed" style="z-index: -1; top: 0px; left: 1000px"></div> |
- |
- <!-- This element gets its own layer because it intersects with the viewport. --> |
- <div class="fixed" style="z-index: -1; top: 0px; left: 0px"></div> |
-</body> |
-</html> |
- |