Skip to content

Commit

Permalink
tidying up rule shorthand test, adding assert
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelandrew committed Jul 4, 2018
1 parent eff6365 commit e28b31f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 25 deletions.
6 changes: 3 additions & 3 deletions css/css-multicol/multicol-rule-shorthand-2-ref.xht
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/"/>
<style><![CDATA[
body {
margin: 0;
margin: 1em;
}
body>div {
font-family: Ahem;
font-size: 1em;
line-height: 1em;
color: black;
background: yellow;
margin: 1em;
margin: 1em 0;
border: 1em solid gray;
width: 15em;
height: 2em;
Expand All @@ -34,7 +34,7 @@ div+div+div {
</head>

<body>

<p>Pass if there is no red visible.</p>
<div>
<div>xx xx</div>
<div class="a">x x</div>
Expand Down
31 changes: 9 additions & 22 deletions css/css-multicol/multicol-rule-shorthand-2.xht
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,38 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>multicolumn | column-rule</title>
<title>CSS Multi-column Layout Test: 'column-rule' shorthand</title>
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/"/>
<link rel="help" href=""/>
<link rel="match" href="multicol-rule-shorthand-2-ref.xht"/>
<meta name="flags" content=""/>
<meta name="assert" content="Tests that column rules are not displayed for invalid properties and values."/>
<meta name="flags" content="invalid"/>
<style type="text/css"><![CDATA[
body {
margin: 0;
margin: 1em;
}
body>div {
font-family: Ahem;
font-size: 1em;
line-height: 1em;
color: black;
background: yellow;
margin: 1em;
margin: 1em 0;
border: 1em solid gray;
width: 15em;
orphans: 1;
widows: 1;

column-count: 4;
column-gap: 1em;
column-rule: solid blue 1em;
column-rule: normal red 1em;
column: normal red 1em;
}
span {
background: blue;
position: absolute;
top: 0;
left: 3em;
height: 2em;
width: 1em;
}
span+span {
left: 7em;
}
span+span+span {
left: 11em;
column-rule: normal red 1em; /* invalid: 'normal' is not a 'border-style' */
column: normal red 1em; /* invalid: 'column' is not a valid property name; 'normal' can only apply to 'column-gap' */
}

]]></style>
</head>

<body>
<p>Pass if there is no red visible.</p>

<div>
xx xx
Expand Down

0 comments on commit e28b31f

Please sign in to comment.