Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/touch-action-beside-display-locked-fixedpos-iframe-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<button id="boo"></button>
<div>
<iframe style="position:fixed; content-visibility:hidden;"></iframe>
</div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
boo.style.touchAction = "pan-x";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>