mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb: Add tests for calc function nodes
This commit is contained in:
parent
eb41f0144b
commit
9f73fc87a8
Notes:
sideshowbarker
2024-07-17 00:57:24 +09:00
Author: https://github.com/stelar7
Commit: 9f73fc87a8
Pull-request: https://github.com/SerenityOS/serenity/pull/20280
12 changed files with 166 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
* {
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
||||
.pow {
|
||||
width: calc(10px * pow(2, 3));
|
||||
}
|
||||
.sqrt {
|
||||
width: calc(10px * sqrt(100));
|
||||
}
|
||||
.hypot {
|
||||
width: hypot(72px, 96px)
|
||||
}
|
||||
.log {
|
||||
width: round(up, calc(100px * log(4.055)), 10px);
|
||||
}
|
||||
.exp {
|
||||
width: round(up, calc(1px * exp(5.05)), 10px);
|
||||
}
|
||||
</style><div class="pow"><div class="sqrt"><div class="hypot"><div class="log"><div class="exp">
|
Loading…
Add table
Add a link
Reference in a new issue