green-dialog-and-backdrop.html (409B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <link rel="stylesheet" href="resources/dialog.css"> 5 <style> 6 body { background: red; } 7 8 .backdrop { 9 display: block; 10 position: fixed; 11 top: 0; 12 left: 0; 13 right: 0; 14 bottom: 0; 15 } 16 17 .backdrop, 18 .pseudodialog { 19 background: green; 20 } 21 </style> 22 <body> 23 <div class="backdrop"></div> 24 <div class="pseudodialog">PASS if no red shows</div> 25 </body> 26 </html>