mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 09:11:01 +00:00
12 lines
355 B
HTML
12 lines
355 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<span id="empty-span"></span>
|
||
|
|
<script src="include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
const hiddenDiv = document.getElementById('empty-span');
|
||
|
|
const scrollHeight = hiddenDiv.scrollHeight;
|
||
|
|
const scrollWidth = hiddenDiv.scrollWidth;
|
||
|
|
println(`Scroll Height: ${scrollHeight}px, Scroll Width: ${scrollWidth}px`);
|
||
|
|
});
|
||
|
|
</script>
|