Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/scroll-markers/chrome-555280390-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<title>Chrome crash bug 555280390</title>
<style>
#host { scroll-target-group: auto; }
</style>
<div id="host">
<template shadowrootmode="open">
<slot></slot>
</template>
<div><a href="#intro">Introduction</a></div>
<div id="slotted"><a href="#ch1">Chapter 1</a></div>
</div>
<h1 id="intro">Intro</h1>
<h2 id="ch1">Chapter 1</h2>
<script>
window.onload = () => requestAnimationFrame(() => requestAnimationFrame(() => {
slotted.slot = "foo";
host.querySelector(":target-after");
document.documentElement.className = "";
}));
</script>