mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
22 lines
468 B
HTML
22 lines
468 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="include.js"></script>
|
||
|
|
<style>
|
||
|
|
#main {
|
||
|
|
background: red;
|
||
|
|
}
|
||
|
|
#side {
|
||
|
|
background: green;
|
||
|
|
position: fixed;
|
||
|
|
right: -200px;
|
||
|
|
width: 200px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<div id="main">bar</div>
|
||
|
|
<div id="side">foo</div>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
document.querySelector('#side').scrollIntoView();
|
||
|
|
println(JSON.stringify(document.querySelector('#main').getBoundingClientRect()));
|
||
|
|
});
|
||
|
|
</script>
|