| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 dialog { | 5 dialog { |
| 6 height: 150px; | 6 height: 150px; |
| 7 width: 150px; | 7 width: 150px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 ::backdrop { | 10 ::backdrop { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 <script> | 54 <script> |
| 55 document.getElementById('hiddenDialogChild').showModal(); | 55 document.getElementById('hiddenDialogChild').showModal(); |
| 56 document.getElementById('hiddenDialog').showModal(); | 56 document.getElementById('hiddenDialog').showModal(); |
| 57 document.getElementById('bottomDialog').showModal(); | 57 document.getElementById('bottomDialog').showModal(); |
| 58 document.getElementById('middleDialog').showModal(); | 58 document.getElementById('middleDialog').showModal(); |
| 59 document.getElementById('topDialog').showModal(); | 59 document.getElementById('topDialog').showModal(); |
| 60 document.getElementById('hiddenDialog').close(); | 60 document.getElementById('hiddenDialog').close(); |
| 61 </script> | 61 </script> |
| 62 </body> | 62 </body> |
| 63 </html> | 63 </html> |
| OLD | NEW |