mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:07:34 +00:00
Tests/LibWeb: Add layout test for layout fix in PR #15780
Adds a layout test for the fix in 488a979
.
This commit is contained in:
parent
5ccb240945
commit
4c090a9a35
2 changed files with 33 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head><style>
|
||||
* {
|
||||
font-family: 'SerenitySans';
|
||||
}
|
||||
|
||||
#guide {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
#container {
|
||||
position: relative;
|
||||
float: left;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#box {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background-color: orange;
|
||||
}
|
||||
</style></head><body><div id="guide"><div id="container"><div id="box">
|
Loading…
Add table
Add a link
Reference in a new issue