ladybird/Tests/LibWeb/Text/input/DOM/Element-documentElement-scrollWidthHeight.html

17 lines
383 B
HTML
Raw Normal View History

<!DOCTYPE html>
<style>
#a {
background: red;
height: 1432px;
width: 1234px;
}
</style>
<div id="a"></div>
<script src="../include.js"></script>
<script>
test(() => {
println(`document.documentElement.scrollWidth: ${document.documentElement.scrollWidth}`);
println(`document.documentElement.scrollHeight: ${document.documentElement.scrollHeight}`);
});
</script>