mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
13 lines
252 B
HTML
13 lines
252 B
HTML
<!doctype html>
|
|
<style>
|
|
@counter-style foo {
|
|
pad: calc(sign(1em - 1px) + 1) "0";
|
|
}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(document.styleSheets[0].cssRules[0].cssText);
|
|
});
|
|
</script>
|