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

Side by Side Diff: LayoutTests/compositing/squashing/visibility-composited-squashing-expected.html

Issue 183833016: Add some incremental compositing tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .set {
6 position: absolute;
7 top: 8px;
8 }
9 .box {
10 height: 100px;
11 width: 100px;
12 background-color: lightblue;
13 }
14 .squashed {
15 height: 40px;
16 width: 40px;
17 background-color: lightgreen;
18 position: absolute;
19 left: 16px;
20 }
21 .hidden {
22 visibility: hidden;
23 }
24 .visible {
25 visibility: visible;
26 }
27 </style>
28 </head>
29 <body>
30 <div class="set">
31 <div class="box"></div>
32 <div class="squashed hidden" style="top: 4px"></div>
33 <div id="target1" class="squashed visible" style="top: 54px"></div>
34 </div>
35
36 <div class="set" style="top: 116px">
37 <div class="box"></div>
38 <div id="target2" class="squashed visible" style="top: 4px"></div>
39 <div class="squashed hidden" style="top: 54px"></div>
40 </div>
41 </body>
42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698