1
0
Fork 0
firefox/testing/web-platform/tests/scroll-to-text-fragment/resources/self-text-directive-iframe.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

21 lines
390 B
HTML

<!doctype html>
<!-- This document navigates itself to a text directive and messages the top window with
the resulting scroll position -->
<style>
p {
margin-top: 2000px;
}
</style>
<script>
window.onscroll = () => {
window.top.postMessage("did_scroll", "*");
};
window.onload = () => {
window.location.hash = ':~:text=Target';
};
</script>
<p>
Target
</p>