1
0
Fork 0
firefox/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-until-found-007.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

52 lines
1.1 KiB
HTML

<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>hidden=until-found + focus</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-until-found">
<link rel="match" href="./resources/spacer-and-container-ref.html">
<meta name="assert" content="focus does not scroll or focus element under hidden=until-found">
<script src="/common/reftest-wait.js"></script>
<style>
.spacer {
width: 150px;
height: 3000px;
background: lightblue;
}
#container {
width: 150px;
height: 150px;
background: lightblue;
}
#target {
position: relative;
top: 75px;
width: 50px;
height: 50px;
background: red;
}
</style>
<div class=spacer></div>
<div id=container hidden=until-found>
<div id=target tabindex=0></div>
</div>
<script>
function runTest() {
document.getElementById("target").focus();
requestAnimationFrame(takeScreenshot);
}
window.onload = requestAnimationFrame(() => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
runTest();
});
});
});
</script>
</html>