mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 10:11:04 +00:00
19 lines
378 B
HTML
19 lines
378 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="include.js"></script>
|
||
|
|
<style>
|
||
|
|
.a {
|
||
|
|
border: 1px solid green;
|
||
|
|
height: 50px;
|
||
|
|
position: absolute;
|
||
|
|
right: 0;
|
||
|
|
width: 1000px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<div class="a"></div>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
// scrollWidth must not exceed the viewport size (800px)
|
||
|
|
println(`html scrollWidth: ${document.querySelector('html').scrollWidth}`);
|
||
|
|
});
|
||
|
|
</script>
|