mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
16 lines
358 B
HTML
16 lines
358 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<style>
|
|
#foo {
|
|
counter-set: foo calc(sign(1em - 1px));
|
|
counter-increment: bar calc(sign(1em - 1px));
|
|
counter-reset: baz calc(sign(1em - 1px));
|
|
}
|
|
</style>
|
|
<div>
|
|
<div id="foo"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|