| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 .dialog-default-ua-style { | 3 .dialog-default-ua-style { |
| 4 position: absolute; | 4 position: absolute; |
| 5 left: 0; | 5 left: 0; |
| 6 right: 0; | 6 right: 0; |
| 7 margin: auto; | 7 margin: auto; |
| 8 border: solid; | 8 border: solid; |
| 9 padding: 1em; | 9 padding: 1em; |
| 10 background: white; | 10 background: white; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 z-index: 100; | 29 z-index: 100; |
| 30 } | 30 } |
| 31 </style> | 31 </style> |
| 32 <body> | 32 <body> |
| 33 Test for the default user agent style of dialog::backdrop. The test passes if | 33 Test for the default user agent style of dialog::backdrop. The test passes if |
| 34 there is a green box, above a very lightly translucent gray box spanning the | 34 there is a green box, above a very lightly translucent gray box spanning the |
| 35 viewport. | 35 viewport. |
| 36 <div id="backdrop"></div> | 36 <div id="backdrop"></div> |
| 37 <div class="dialog-default-ua-style" id="dialog"></div> | 37 <div class="dialog-default-ua-style" id="dialog"></div> |
| 38 </body> | 38 </body> |
| OLD | NEW |