Tests/LibWeb: Remove the "scroll.html" layout test for now

This test is flaky, so let's remove it until we have a stable version.
This commit is contained in:
Andreas Kling 2023-11-06 09:42:41 +01:00
parent 9249f8bda8
commit 3ac77dac99
2 changed files with 0 additions and 33 deletions

View file

@ -1,11 +0,0 @@
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
BlockContainer <html> at (0,0) content-size 800x600 [BFC] children: not-inline
BlockContainer <body> at (8,8) content-size 784x202 children: not-inline
BlockContainer <div#scrollbox> at (9,9) content-size 200x200 [BFC] children: not-inline
BlockContainer <div#content> at (9,9) content-size 200x1000 children: not-inline
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x202]
PaintableWithLines (BlockContainer<DIV>#scrollbox) [8,8 202x202] overflow: [9,9 200x1000] scroll-offset: [0,100]
PaintableWithLines (BlockContainer<DIV>#content) [9,9 200x1000]

View file

@ -1,22 +0,0 @@
<style>
#scrollbox {
width: 200px;
height: 200px;
overflow: scroll;
border: 1px solid black;
}
#content {
height: 1000px;
}
</style>
<script>
document.addEventListener(
"DOMContentLoaded",
function () {
document.getElementById("scrollbox").scroll(0, 100);
},
false
);
</script>
<div id="scrollbox"><div id="content"></div></div>