mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 14:02:51 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
16 lines
310 B
HTML
16 lines
310 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#scrollable-box {
|
|
width: 300px;
|
|
height: 200px;
|
|
border: 1px solid black;
|
|
}
|
|
.absolute-element {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
background-color: yellow;
|
|
}
|
|
</style>
|
|
<div id="scrollable-box"></div>
|
|
<div class="absolute-element">Abspos Element</div>
|