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

Side by Side Diff: LayoutTests/compositing/background-color/background-color-drawn-over-child-expected.html

Issue 183833020: Re-land "Drop background color optimization for composited layers" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make Mac test bot pass Created 6 years, 9 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 type="text/css">
5 #backgournd_color_container {
6 background-color: green;
7 position: absolute;
8 -webkit-transform: translateZ(0);
9 }
10 #nested_container {
11 width: 200px;
12 height: 200px;
13 position: relative;
14 }
15 #issue {
16 width: 100px;
17 height: 100px;
18 background-color: red;
19 position: absolute;
20 }
21 #compositing {
22 left: 100px;
23 top: 100px;
24 width: 100px;
25 height: 100px;
26 position: absolute;
27 background-color: blue;
28 -webkit-transform: translateZ(0);
29 }
30 </style>
31 </head>
32 <body>
33 <div id="backgournd_color_container">
34 <div id="nested_container">
35 <div id="issue"></div>
36 <div id="compositing"></div>
37 </div>
38 </div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698