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

Unified Diff: LayoutTests/css3/filters/backdrop-filter-rendering-expected.html

Issue 1299323005: blink: Add backdrop-filter support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: one more Created 5 years, 4 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: LayoutTests/css3/filters/backdrop-filter-rendering-expected.html
diff --git a/LayoutTests/css3/filters/backdrop-filter-rendering-expected.html b/LayoutTests/css3/filters/backdrop-filter-rendering-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..d501199f7b753bc003ba79d65bc9e51d645eddfb
--- /dev/null
+++ b/LayoutTests/css3/filters/backdrop-filter-rendering-expected.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+
+div {
+ width: 100px;
+ height: 100px;
+ position :absolute;
+}
+
+.background_object {
+ left: 10px;
+ top: 10px;
+ background: orange;
+}
+
+.grayscale {
+ left: 60px;
+ top: 60px;
+ width: 50px;
+ height: 50px;
+ background: #ACACAC;
+}
+
+</style>
+</head>
+<body>
+ <div class="background_object"></div>
+ <div class="grayscale"></div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698