Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/anchor-display-none-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<html class="reftest-wait">
<style>
@position-try --pf {
position-anchor: --b;
}
</style>
<div id="elm" style="anchor-name:--a;"></div>
<div style="anchor-name:--b; width:40%;"></div>
<div style="position:absolute; left:anchor(right); width:40%; position-anchor:--a; position-try-fallbacks:--pf;"></div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
elm.style.display = "none";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>