mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
15 lines
358 B
HTML
15 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>
|