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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/mask-with-filter.html

Issue 2689253002: cc: Add layout test cases for mask tiling. (Closed)
Patch Set: Rebaseline virtual/prefer_compositing_to_lcd_text tests. Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #mask {
4 width: 200px;
5 height: 200px;
6 overflow: hidden;
7 border-radius: 10px;
8 border: 4px solid red;
9 background-color: grey;
10 transform-style: preserve-3d;
11 }
12
13 .scale-seam {
14 position: relative;
15 left: 100px;
16 transform-origin: 0 0;
17 transform: scale(2, 1) rotateY(30deg) rotateX(30deg) rotateZ(30deg);
18 display: inline-block;
19 }
20
21 .content {
22 width: 500px;
23 height: 500px;
24 filter: blur(15px);
25 }
26 </style>
27 <div class="scale-seam">
28 <div id="mask">
29 <div class="content" style="left: 0;top: 0;background: black;"></div>
30 </div>
31 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698