LibWeb/CSS: Unit tests for changes to counter definitions

This commit is contained in:
Manuel Zahariev
2025-06-02 09:25:55 -07:00
committed by Alexander Kalenik
parent 99c6eb0c35
commit f972342c27
Notes: github-actions[bot] 2025-06-03 01:52:47 +00:00
24 changed files with 447 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<style>
div.one::before { content: '1: '; }
div.two::before { content: '2: '; }
div.three::before { content: '3: '; }
</style>
<div>
<div class='one'>One</div>
<div class='two'>Two</div>
<div class='three'>Three</div>
</div>
</html>