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

Side by Side Diff: LayoutTests/css3/filters/backdrop-filter-rendering.html

Issue 1299323005: blink: Add backdrop-filter support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed some todos 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 unified diff | Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/animation/CompositorAnimations.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script>
2 if (window.testRunner)
3 testRunner.waitUntilDone();
4
5 window.addEventListener('load', function () {
6 var el = document.querySelector("div");
7 el.className = "backdrop_filter";
8 setTimeout(function () {
9 if (window.testRunner)
10 testRunner.notifyDone();
jbroman 2015/08/20 02:49:46 Drive-by: please no setTimeout in layout tests. Yo
11 }, 0);
12 }, false);
13 </script>
14 <style>
15 div {
16 width: 100px;
17 height: 100px;
18 position: absolute;
19 }
20
21 .backdrop_object {
22 left: 120px;
23 top: 80px;
24 background: orange;
25 }
26
27 .backdrop_filter {
28 left: 70px;
29 top: 50px;
30 background: blue;
31 opacity:0.25;
32 backdrop-filter: blur(5px);
33 }
34 </style>
35
36 <div class="backdrop_object"></div>
37 <div class="backdrop_filter"></div>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/animation/CompositorAnimations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698