mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
16 lines
324 B
HTML
16 lines
324 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
#foo {
|
|
font-style: oblique calc(sign(1em - 1px) * 1rad);
|
|
}
|
|
</style>
|
|
<div id="foo"></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(getComputedStyle(foo).fontStyle);
|
|
});
|
|
</script>
|
|
</html>
|