mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
LibWeb: Add tests for calc function nodes
This commit is contained in:
parent
eb41f0144b
commit
9f73fc87a8
12 changed files with 166 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
* {
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
||||
.round {
|
||||
width: round(down, 85px, 10px);
|
||||
}
|
||||
.mod {
|
||||
width: mod(201px, 101px);
|
||||
}
|
||||
.rem {
|
||||
width: rem(241px, -121px);
|
||||
}
|
||||
</style><div class="round"><div class="mod"><div class="rem">
|
Loading…
Add table
Add a link
Reference in a new issue