mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
14 lines
266 B
HTML
14 lines
266 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#foo {
|
|
background-size: calc(1em - 1px) calc(1em - 1px);
|
|
}
|
|
</style>
|
|
<div id="foo"></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(getComputedStyle(foo).backgroundSize);
|
|
});
|
|
</script>
|