blob: d72f0aa50a523a5a5da0776bc94a2c3927d4f920 [file] [log] [blame] [edit]
<!DOCTYPE html>
<meta charset="utf-8">
<link rel=author href="mailto:[email protected]">
<link rel=help href="https://open-ui.org/components/popup.research.explainer">
<link rel=match href="popup-inside-display-none-ref.tentative.html">
No popup should be displayed here.<p>
<div style="display:none">
<div popup=popup>This content should be hidden</div>
</div>
<script>
const popup = document.querySelector('[popup]');
popup.showPopup();
if (!popup.matches(':popup-open'))
document.body.appendChild(document.createTextNode('FAIL'));
</script>