OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 div { | 3 div { |
4 position: absolute; | 4 position: absolute; |
5 } | 5 } |
6 | 6 |
7 #bottom-backdrop { | 7 #bottom-backdrop { |
8 top: 100px; | 8 top: 100px; |
9 left: 100px; | 9 left: 100px; |
10 height: 300px; | 10 height: 300px; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 Test for dialog::backdrop stacking order. The test passes if there are 6 | 56 Test for dialog::backdrop stacking order. The test passes if there are 6 |
57 boxes enclosed in each other, becoming increasingly smaller and brighter | 57 boxes enclosed in each other, becoming increasingly smaller and brighter |
58 green. | 58 green. |
59 <div id="bottom-backdrop"></div> | 59 <div id="bottom-backdrop"></div> |
60 <div id="bottom"></div> | 60 <div id="bottom"></div> |
61 <div id="middle-backdrop"></div> | 61 <div id="middle-backdrop"></div> |
62 <div id="middle"></div> | 62 <div id="middle"></div> |
63 <div id="top-backdrop"></div> | 63 <div id="top-backdrop"></div> |
64 <div id="top"></div> | 64 <div id="top"></div> |
65 </body> | 65 </body> |
OLD | NEW |