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

Side by Side Diff: LayoutTests/compositing/ancestor-painted-layer-should-appear.html

Issue 471073002: Layers that paint into their composited ancestor should still appear (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <style>
3 body {
4 -webkit-transform: translateZ(0);
5 }
6 #overlapper {
7 width: 400px;
8 height: 400px;
9 left: 200px;
10 background: gray;
11 position: absolute;
12 -webkit-transform: translateZ(0);
13 }
14
15 #container {
16 -webkit-perspective: 1400px;
17 position: absolute;
18 width: 180px;
19 height: 180px;
20 background: papayawhip;
21 }
22
23 #composited {
24 width: 100px;
25 height: 100px;
26 background: green;
27 position: absolute;
28 -webkit-transform: translateZ(10px);
29 }
30
31 #squashed {
32 position: absolute;
33 left: 200px;
34 width: 50px;
35 height: 50px;
36 background: blue;
37 }
38 </style>
39 <div id="overlapper"></div>
40 <div id="container">
41 <div id="composited"></div>
42 </div>
43 <div id="squashed"></div>
44
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/compositing/ancestor-painted-layer-should-appear-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698