| <!DOCTYPE html> |
| <meta charset="utf-8"> |
| <link rel=author href="mailto:masonf@chromium.org"> |
| <link rel=help href="https://open-ui.org/components/popup.research.explainer"> |
| <link rel=match href="popup-initiallyopen-display-ref.tentative.html"> |
| |
| <popup id=p1 initiallyopen>This is a popup, which should be open upon load</popup> |
| <popup id=p2 initiallyopen>This is a second popup with initiallyopen, which should NOT be open upon load</popup> |
| |
| <style> |
| popup { |
| width: fit-content; |
| height: fit-content; |
| border: 1px solid; |
| padding: 1em; |
| background: white; |
| color: black; |
| } |
| #p1 { |
| top:0; |
| } |
| #p2 { |
| top:100px; |
| } |
| </style> |
| |