Skip to content

Commit

Permalink
[css-conditional] Fix metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasai committed Nov 10, 2021
1 parent 8989bf7 commit 0ba29b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion css/css-conditional/css-supports-006.xht
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="author" title="Cameron McCormack" href="mailto:[email protected]" />
<link rel="help" href="http://www.w3.org/TR/css3-conditional/#at-supports" />
<meta name="flags" content="" />
<meta name="assert" content="A disjunction of two @supports conditions must cause the @supports condition to pass if the left condition passes."/>
<meta name="assert" content="A disjunction of two @supports conditions must cause the @supports condition to pass if the second condition passes."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
@supports (color: rainbow) or (color: green) {
Expand Down
2 changes: 1 addition & 1 deletion css/css-conditional/css-supports-007.xht
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="author" title="Cameron McCormack" href="mailto:[email protected]" />
<link rel="help" href="http://www.w3.org/TR/css3-conditional/#at-supports" />
<meta name="flags" content="" />
<meta name="assert" content="A disjunction of two @supports conditions must cause the @supports condition to pass if the right condition passes."/>
<meta name="assert" content="A disjunction of two @supports conditions must cause the @supports condition to pass if the first condition passes."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
@supports (color: green) or (color: rainbow) {
Expand Down
2 changes: 1 addition & 1 deletion css/css-conditional/css-supports-009.xht
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="author" title="Cameron McCormack" href="mailto:[email protected]" />
<link rel="help" href="http://www.w3.org/TR/css3-conditional/#at-supports" />
<meta name="flags" content="" />
<meta name="assert" content="A conjunction of two @supports conditions must cause the @supports condition to fail if the left sub-condition passes."/>
<meta name="assert" content="A conjunction of two @supports conditions must cause the @supports condition to fail if the first sub-condition fails."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
html { background-color: green }
Expand Down
2 changes: 1 addition & 1 deletion css/css-conditional/css-supports-010.xht
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="author" title="Cameron McCormack" href="mailto:[email protected]" />
<link rel="help" href="http://www.w3.org/TR/css3-conditional/#at-supports" />
<meta name="flags" content="" />
<meta name="assert" content="A conjunction of two @supports conditions must cause the @supports condition to fail if the right sub-condition passes."/>
<meta name="assert" content="A conjunction of two @supports conditions must cause the @supports condition to fail if the second sub-condition fails."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
html { background-color: green }
Expand Down
2 changes: 1 addition & 1 deletion css/css-conditional/css-supports-020.xht
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="author" title="Cameron McCormack" href="mailto:[email protected]" />
<link rel="help" href="http://www.w3.org/TR/css3-conditional/#at-supports" />
<meta name="flags" content="" />
<meta name="assert" content="An @supports condition that is a declaration with a supported property name with an unsupported value must fail."/>
<meta name="assert" content="An @supports condition that is a declaration with an unsupported property name with a supported value must fail."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
html { background-color: green }
Expand Down

0 comments on commit 0ba29b6

Please sign in to comment.