mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-17 00:23:00 +00:00
This fixes a crash on: https://docs.github.com/en/get-started/learning-about-github/githubs-plans
29 lines
740 B
HTML
29 lines
740 B
HTML
<script src="include.js"></script>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
#box {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: magenta;
|
|
}
|
|
</style>
|
|
<div style="height: 1000px"></div>
|
|
<div style="margin-left: 500px" onclick="clickHandler(event)" id="box"></div>
|
|
<div style="height: 1000px"></div>
|
|
<script>
|
|
function clickHandler(event) {
|
|
document.getElementById("box").scrollIntoView({ block: "center" });
|
|
}
|
|
|
|
asyncTest(done => {
|
|
document.addEventListener("scroll", event => {
|
|
println("The page has been scrolled to y: " + window.scrollY);
|
|
done();
|
|
});
|
|
|
|
document.getElementById("box").dispatchEvent(new Event("click"));
|
|
});
|
|
</script>
|