Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-area-element/chrome-531745321-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<title>Crash focusing image map non-slotted area element</title>
<img src="/images/green-1x1.png" usemap="#map">
<div>
<template shadowrootmode="open"></template>
<map name="map"><area id="area" href="."></map>
</div>
<script>
window.onload = () => {
area.focus();
document.documentElement.classList.remove("test-wait");
};
</script>