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

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

Issue 2825843002: Disable the direct-drawing optimization for quads with opacity. (Closed)
Patch Set: Created 3 years, 8 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 <html>
3 <head>
4 <style>
5 .outer {
6 position: relative;
7 width: 280px;
8 height: 160px;
9 background-color: green;
10 border-radius:3px;
11 overflow:hidden;
12 will-change: transform;
13 }
14
15 .inner {
16 position:absolute;
17 top:0;
18 left:0;
19 right:0;
20 bottom:0;
21 background-color:red;
22 border: 1px solid black;
23 opacity: 0.5;
24 will-change: transform;
25 }
26 </style>
27 </head>
28 <body>
29 <div class="outer">
30 <div class="inner"></div>
31 </div>
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | third_party/WebKit/LayoutTests/compositing/opacity-with-mask-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698