LibWeb/CSS: Unit tests for changes to counter definitions
Some checks are pending
CI / Lagom (arm64, Sanitizer_CI, false, macOS, macos-15, Clang) (push) Waiting to run
CI / Lagom (x86_64, Fuzzers_CI, false, Linux, blacksmith-16vcpu-ubuntu-2404, Clang) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, false, Linux, blacksmith-16vcpu-ubuntu-2404, GNU) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, true, Linux, blacksmith-16vcpu-ubuntu-2404, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (arm64, macOS, macOS-arm64, macos-15) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (x86_64, Linux, Linux-x86_64, blacksmith-8vcpu-ubuntu-2404) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run

This commit is contained in:
Manuel Zahariev 2025-06-02 09:25:55 -07:00 committed by Alexander Kalenik
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,13 @@
<!DOCTYPE html>
<style>
div.five::before { content: '5: '; }
div.six::before { content: '6: '; }
div.eight::before { content: '8: '; }
</style>
<div>
<div class='five'>Five</div>
<div class='six'>Six</div>
<div class='eight'>Eight</div>
<div class='eight'>Eight</div>
</div>
</html>