Skip to content

Commit

Permalink
LibWeb: Fix typo on CSSConditionRule test
Browse files Browse the repository at this point in the history
  • Loading branch information
tcl3 authored and awesomekling committed Feb 29, 2024
1 parent d878975 commit 3bd9566
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

const supportsRule = document.styleSheets[0].cssRules[1];
println(`@supports rule conditionText initial value: ${supportsRule.conditionText}`);
mediaRule.conditionText = "(unsupported-property: unsupported-value)";
supportsRule.conditionText = "(unsupported-property: unsupported-value)";
println(`@supports rule conditionText value after assignment: ${supportsRule.conditionText}`);
});
</script>

0 comments on commit 3bd9566

Please sign in to comment.