| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>Modal dialog inside display: table-column should not generate box</title> |
| <link rel="match" href="modal-dialog-in-table-column-ref.html"> |
| <link rel="help" href="https://fullscreen.spec.whatwg.org/#new-stacking-layer"> |
| <style> |
| dialog { |
| background: green; |
| border-color: green; |
| } |
| div { |
| display: table-column; |
| } |
| </style> |
| </head> |
| <body> |
| <p>The test passes if you see no green rectangle. |
| <div> |
| <dialog id="dialog"></dialog> |
| </div> |
| <script> |
| document.getElementById('dialog').showModal(); |
| </script> |
| </body> |
| </html> |