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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 var removedDialog = document.getElementById('removedDialog'); | 42 var removedDialog = document.getElementById('removedDialog'); |
43 removedDialog.showModal(); | 43 removedDialog.showModal(); |
44 document.getElementById('bottomDialog').showModal(); | 44 document.getElementById('bottomDialog').showModal(); |
45 document.getElementById('removedDialogChild').showModal(); | 45 document.getElementById('removedDialogChild').showModal(); |
46 removedDialog.parentNode.removeChild(removedDialog); | 46 removedDialog.parentNode.removeChild(removedDialog); |
47 document.getElementById('topDialog').close(); | 47 document.getElementById('topDialog').close(); |
48 document.getElementById('topDialog').showModal(); | 48 document.getElementById('topDialog').showModal(); |
49 </script> | 49 </script> |
50 </body> | 50 </body> |
51 </html> | 51 </html> |
OLD | NEW |