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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 document.getElementById('container').style.display = 'none'; | 48 document.getElementById('container').style.display = 'none'; |
49 document.getElementById('displayNoneChild2').showModal(); | 49 document.getElementById('displayNoneChild2').showModal(); |
50 | 50 |
51 // Test that stacking works even if an element is added to the top layer when it
has no renderer. | 51 // Test that stacking works even if an element is added to the top layer when it
has no renderer. |
52 document.getElementById('bottomDialog').showModal(); | 52 document.getElementById('bottomDialog').showModal(); |
53 document.getElementById('topDialog').showModal(); | 53 document.getElementById('topDialog').showModal(); |
54 document.getElementById('bottomDialog').style.display = 'block'; | 54 document.getElementById('bottomDialog').style.display = 'block'; |
55 </script> | 55 </script> |
56 </body> | 56 </body> |
57 </html> | 57 </html> |
OLD | NEW |