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

Unified Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter.html

Issue 1678443002: Revert of Layers that have a backdrop-filter should paints contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
-
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-out-of-view-with-backdrop-filter-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698