mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:47:35 +00:00
LibWeb: Add layout tests for floats, margins collapsing and positioning
Those are copied from 'Base/res/html/misc/'.
This commit is contained in:
parent
12eca612bc
commit
900cd78121
24 changed files with 865 additions and 0 deletions
67
Tests/LibWeb/Layout/input/position-absolute-top-left.html
Normal file
67
Tests/LibWeb/Layout/input/position-absolute-top-left.html
Normal file
|
@ -0,0 +1,67 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>absolute</title>
|
||||
<style>
|
||||
div {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
.absolute {
|
||||
position: absolute;
|
||||
}
|
||||
.blue {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-color: blue;
|
||||
top: 208px;
|
||||
left: 208px;
|
||||
}
|
||||
.yellow {
|
||||
background-color: yellow;
|
||||
top: 50px;
|
||||
left: 50px;
|
||||
}
|
||||
.red {
|
||||
background-color: red;
|
||||
top: 100px;
|
||||
left: 100px;
|
||||
}
|
||||
.green {
|
||||
background-color: green;
|
||||
top: 300px;
|
||||
left: 300px;
|
||||
}
|
||||
.black {
|
||||
background-color: black;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
top: 50px;
|
||||
left: 50px;
|
||||
}
|
||||
.blue_margin {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-color: blue;
|
||||
margin-top: 200px;
|
||||
margin-left: 400px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="blue absolute">
|
||||
<div class="red absolute"></div>
|
||||
<div class="yellow absolute">
|
||||
<div class="black absolute"></div>
|
||||
</div>
|
||||
<div class="green absolute"></div>
|
||||
</div>
|
||||
<div class="blue">
|
||||
<div class="red"></div>
|
||||
<div class="yellow"></div>
|
||||
<div class="green"></div>
|
||||
</div>
|
||||
<div class="blue_margin"></div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue