OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="resources/dialog.css"> | 4 <link rel="stylesheet" href="resources/dialog.css"> |
5 <style> | 5 <style> |
6 .pseudodialog { | 6 .pseudodialog { |
7 height: 100px; | 7 height: 100px; |
8 width: 100px; | 8 width: 100px; |
9 } | 9 } |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 </style> | 21 </style> |
22 </head> | 22 </head> |
23 <body> | 23 <body> |
24 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=105489">105489</a>: Elem
ents must be reattached when inserted/removed from top layer | 24 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=105489">105489</a>: Elem
ents must be reattached when inserted/removed from top layer |
25 <p>The test passes if you see a green rectangle stacked on top of a blue rectang
le. | 25 <p>The test passes if you see a green rectangle stacked on top of a blue rectang
le. |
26 <div id="bottomDialog" class="pseudodialog"></div> | 26 <div id="bottomDialog" class="pseudodialog"></div> |
27 <div id="topDialog" class="pseudodialog"></div> | 27 <div id="topDialog" class="pseudodialog"></div> |
28 </body> | 28 </body> |
29 </html> | 29 </html> |
30 | 30 |
OLD | NEW |