1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:37:45 +00:00

LibWeb: Move table tests to their own folder

This commit is contained in:
martinfalisse 2023-04-02 19:43:13 +02:00 committed by Andreas Kling
parent 7b4c76788b
commit c421f1692c
4 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<!DOCTYPE html><html><head><style>
body {
font-family: 'SerenitySans';
}
* {
border: 1px solid black;
}
span {
display: table-cell;
}
</style></head><body><div><span>foo</span></div><div><span>bar</span></div>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html><html><head><style>
* {
border: 1px solid black;
font-family: 'SerenitySans';
}
body {
display: flex;
}
.cell {
display: table-cell;
}
.upper {
background: pink;
}
</style></head><body><div class="upper"><div class="cell">Hello</div>