mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
17 lines
343 B
HTML
17 lines
343 B
HTML
<!doctype html>
|
|
<style>
|
|
@function --var-default(--x: var(--fallback)) {
|
|
}
|
|
|
|
@function --invalid-var-default(--x: var(, 1px)) {
|
|
}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
for (const rule of document.styleSheets[0].cssRules) {
|
|
println(rule.cssText);
|
|
}
|
|
});
|
|
</script>
|