Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / visibility / visibility-remove-layer-expected.html
blobd42c6fa523fc31562e213afe4cdabd738437d8ce
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .set {
6 position: absolute;
7 top: 8px;
9 .box {
10 height: 100px;
11 width: 100px;
12 background-color: blue;
15 .hidden {
16 visibility: hidden;
19 .container.hidden {
20 outline: 4px solid red;
23 .visible {
24 visibility: visible;
26 .should-be-hidden {
27 background-color: red !important;
29 .should-be-visible {
30 background-color: green !important;
33 .visible-indicator {
34 background-color: green;
37 .hidden-indicator {
38 background-color: red;
40 </style>
41 </head>
42 <body>
43 <div class="set">
44 <div class="hidden-indicator box"></div>
45 </div>
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>