mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 09:27:00 +02:00
This revealed an issue with `@counter-style/range` where parsing could consume and ignore invalid keywords
13 lines
245 B
HTML
13 lines
245 B
HTML
<!doctype html>
|
|
<style>
|
|
@counter-style invalid-keyword {
|
|
range: auto 1 2;
|
|
}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(document.styleSheets[0].cssRules[0].cssText);
|
|
});
|
|
</script>
|