Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/popovers/popover-hint-crash.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div popover id=p>Popover</div>
<div popover=hint id=h>Hint</div>
<script>
p.showPopover();
h.showPopover();
h.addEventListener('beforetoggle',() => {
p.hidePopover();
});
p.hidePopover();
// This test passes if it does not crash.
</script>