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

Side by Side Diff: LayoutTests/compositing/visibility/visibility-remove-layer-expected.html

Issue 185653011: RenderLayer::hasVisibleContent() incorrect when layer removed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reupload 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: blue;
13 }
14
15 .hidden {
16 visibility: hidden;
17 }
18
19 .container.hidden {
20 outline: 4px solid red;
21 }
22
23 .visible {
24 visibility: visible;
25 }
26 .should-be-hidden {
27 background-color: red !important;
28 }
29 .should-be-visible {
30 background-color: green !important;
31 }
32
33 .visible-indicator {
34 background-color: green;
35 }
36
37 .hidden-indicator {
38 background-color: red;
39 }
40 </style>
41 </head>
42 <body>
43 <div class="set">
44 <div class="hidden-indicator box"></div>
45 </div>
46
47 <div class="set">
48 <div class="hidden container">
49 <div id="target" class="hidden">
50 <div class="visible box should-be-visible"></div>
51 </div>
52 </div>
53 </div>
54 </body>
55 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/visibility/visibility-remove-layer.html ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698