blob: cdef786b4c10b10f7d2bd1056ca62bfad2b002bf [file] [log] [blame]
<!--
@BLINK-ALLOW:scrollable=*
@WAIT-FOR:done
-->
<!DOCTYPE html>
<html style="width:100px; height:100px;">
<body>
<fencedframe style="width:200px; height: 200px;" aria-label="Scrollable iframe">
</fencedframe>
<script>
window.onload = () => {
const url = new URL("frame/visible_text.html", location.href);
document.querySelector("fencedframe").config = new FencedFrameConfig(url);
// Using @WAIT-FOR to check a value inside the fenced frame after it loads
// causes the test to flake. Instead, we wait for 500ms to give the fenced
// frame enough time to navigate.
setTimeout(() => {document.title = "done";}, 500);
}
</script>
</body>
</html>