modal-dialog-in-object.html (556B)
1 <!DOCTYPE html> 2 <title>Modal dialog inside object should not generate box</title> 3 <link rel=match href="modal-dialog-in-object-ref.html"> 4 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/6939"> 5 <link rel=help href="https://fullscreen.spec.whatwg.org/#new-stacking-layer"> 6 <style> 7 dialog { 8 background: green; 9 border-color: green; 10 } 11 </style> 12 <object width="200" type="image/svg+xml" data="../../../../images/100px-green-rect.svg"> 13 <dialog id="dialog"></dialog> 14 </object> 15 <script> 16 document.getElementById('dialog').showModal(); 17 </script>