- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 19 Apr 2006 07:55:37 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/autotest/testsuite/properties/ok
In directory hutz:/tmp/cvs-serv14738/testsuite/properties/ok
Added Files:
aural.css box.css classification.css color-background.css
font.css generated-content.css paged.css table.css text.css
ui.css visual-effects.css
Log Message:
importing test suite/test cases made during european project lat year (Yves, Jean-Guilhem)
--- NEW FILE: color-background.css ---
em { color: #f00 } /* #rgb */
em { color: #ff0000 } /* #rrggbb */
em { color: rgb(255,0,0) }
em { color: rgb(100%, 0%, 0%) }
em { color: white }
a {
background-color: transparent;
background-color: #f00;
background-color: #ff0000;
background-color: rgb(255,0,0);
background-color: rgb(100%, 0%, 0%);
background-color: white;
background-image: url("image.png");
background-image: none;
background-repeat: repeat;
background-repeat: repeat-x;
background-repeat: repeat-y;
background-repeat: no-repeat;
background-attachment: scroll;
background-attachment: fixed;
background-position: 10%;
background-position: 10px;
background-position: left;
background-position: center;
background-position: top;
background-position: bottom;
background-position: center;
background-position: right;
background-position: right 10%;
background-position: right 10px;
background-position: right top;
background-position: right bottom;
background-position: right center;
background: rgb(80%, 10%, 10%) url("image.png") no-repeat fixed left top;
}
--- NEW FILE: table.css ---
table-caption {
caption-side: top;
caption-side: bottom;
}
table {
table-layout: auto;
table-layout: fixed;
border-collapse: collapse;
border-collapse: separate;
border-spacing: 2px 2em;
border-spacing: 2ex;
}
table-cell {
empty-cells: show;
empty-cells: hide;
}
--- NEW FILE: ui.css ---
a {
cursor: url("cursor1"), url("cursor2"), auto;
cursor: url("cursor1"), url("cursor2"), crosshair;
cursor: url("cursor1"), url("cursor2"), default;
cursor: url("cursor1"), url("cursor2"), pointer;
cursor: url("cursor1"), url("cursor2"), move;
cursor: url("cursor1"), url("cursor2"), e-resize;
cursor: url("cursor1"), url("cursor2"), ne-resize;
cursor: url("cursor1"), url("cursor2"), nw-resize;
cursor: url("cursor1"), url("cursor2"), n-resize;
cursor: url("cursor1"), url("cursor2"), se-resize;
cursor: url("cursor1"), url("cursor2"), sw-resize;
cursor: url("cursor1"), url("cursor2"), s-resize;
cursor: url("cursor1"), url("cursor2"), w-resize;
cursor: url("cursor1"), url("cursor2"), text;
cursor: url("cursor1"), url("cursor2"), wait;
cursor: url("cursor1"), url("cursor2"), help;
cursor: url("cursor1"), url("cursor2"), progress;
outline-color: black;
outline-color: invert;
outline-style: solid;
outline-width: 1px;
outline: black;
outline: solid;
outline: 1px;
outline: black solid;
outline: black 1px;
outline: solid 1px;
outline: black solid 1px;
}
--- NEW FILE: visual-effects.css ---
a {
clip: rect(10px, 100px, 100px, 5px);
clip: auto;
overflow: visible;
overflow: hidden;
overflow: scroll;
overflow: auto;
visibility: visible;
visibility: hidden;
visibility: collapse;
}
--- NEW FILE: text.css ---
a {
word-spacing: normal;
word-spacing: 3px;
letter-spacing: normal;
letter-spacing: 3em;
text-decoration: none;
text-decoration: underline;
text-decoration: overline;
text-decoration: line-through;
text-decoration: blink;
text-decoration: underline overline;
text-decoration: underline overline line-through;
text-decoration: underline overline line-through blink;
vertical-align: baseline;
vertical-align: sub;
vertical-align: super;
vertical-align: top;
vertical-align: text-top;
vertical-align: middle;
vertical-align: bottom;
vertical-align: text-bottom;
vertical-align: 12%;
vertical-align: 12ex;
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
text-transform: none;
text-align: left;
text-align: right;
text-align: center;
text-align: justify;
text-indent: 10px;
text-indent: 10%;
line-height: normal;
line-height: 10;
line-height: 10px;
line-height: 10%;
white-space: normal;
white-space: pre;
white-space: nowrap;
}
--- NEW FILE: box.css ---
a {
/* margin */
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 10px;
margin: 10px;
margin: 10px 11px;
margin: 10px 11px 12px;
margin: 10px 11px 12px 13px;
/* padding */
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding: 10px;
padding: 10px 11px;
padding: 10px 11px 12px;
padding: 10px 11px 12px 13px;
/* borders */
border-top-width: 10px;
border-right-width: 10px;
border-bottom-width: 10px;
border-left-width: 10px;
border-width: 10px;
border-width: 10px 11px;
border-width: 10px 11px 12px;
border-width: 10px 11px 12px 13px;
border-top-color: blue;
border-right-color: blue;
border-bottom-color: blue;
border-left-color: blue;
border-color: blue;
border-color: blue yellow;
border-color: blue yellow black;
border-color: blue yellow black red;
border-color: blue yellow black red;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-style: solid hidden dotted dashed;
border-style: none double groove;
border-style: inset outset;
border-style: ridge;
border-top: 1px;
border-top: 1px solid;
border-top: 1px black;
border-top: 1px solid black;
border-top: 1px black solid;
border-top: solid;
border-top: solid 1px;
border-top: solid black;
border-top: solid 1px black;
border-top: solid black 1px;
border-top: black;
border-top: black 1px;
border-top: black solid;
border-top: black 1px solid;
border-top: black solid 1px;
border-right: 1px;
border-right: 1px solid;
border-right: 1px black;
border-right: 1px solid black;
border-right: 1px black solid;
border-right: solid;
border-right: solid 1px;
border-right: solid black;
border-right: solid 1px black;
border-right: solid black 1px;
border-right: black;
border-right: black 1px;
border-right: black solid;
border-right: black 1px solid;
border-right: black solid 1px;
border-bottom: 1px;
border-bottom: 1px solid;
border-bottom: 1px black;
border-bottom: 1px solid black;
border-bottom: 1px black solid;
border-bottom: solid;
border-bottom: solid 1px;
border-bottom: solid black;
border-bottom: solid 1px black;
border-bottom: solid black 1px;
border-bottom: black;
border-bottom: black 1px;
border-bottom: black solid;
border-bottom: black 1px solid;
border-bottom: black solid 1px;
border-left: 1px;
border-left: 1px solid;
border-left: 1px black;
border-left: 1px solid black;
border-left: 1px black solid;
border-left: solid;
border-left: solid 1px;
border-left: solid black;
border-left: solid 1px black;
border-left: solid black 1px;
border-left: black;
border-left: black 1px;
border-left: black solid;
border-left: black 1px solid;
border-left: black solid 1px;
border: 1px;
border: 1px solid;
border: 1px black;
border: 1px solid black;
border: 1px black solid;
border: solid;
border: solid 1px;
border: solid black;
border: solid 1px black;
border: solid black 1px;
border: black;
border: black 1px;
border: black solid;
border: black 1px solid;
border: black solid 1px;
/* positionning */
width: 10px;
width: 10%;
width: auto;
height: 10px;
height: 10%;
height: auto;
float: left;
float: right;
float: none;
clear: none;
clear: left;
clear: right;
clear: both;
top: 10px;
top: 10%;
top: auto;
right: 10px;
right: 10%;
right: auto;
bottom: 10px;
bottom: 10%;
bottom: auto;
left: 10px;
left: 10%;
left: auto;
position: static;
position: relative;
position: absolute;
position: fixed;
direction: ltr;
direction: rtl;
max-height: 10px;
max-height: 10%;
max-height: none;
max-width: 10px;
max-width: 10%;
max-width: none;
min-width: 10px;
min-width: 10%;
min-height: 10px;
min-height: 10%;
unicode-bidi: normal;
unicode-bidi: embed;
unicode-bidi: bidi-override;
z-index: auto;
z-index: 10;
}
--- NEW FILE: font.css ---
a {
font-family: Verdana, Arial, serif;
font-style: normal;
font-style: italic;
font-style: oblique;
font-variant: normal;
font-variant: small-caps;
font-weight: normal;
font-weight: bold;
font-weight: bolder;
font-weight: lighter;
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400;
font-weight: 500;
font-weight: 600;
font-weight: 700;
font-weight: 800;
font-weight: 900;
font-size: x-small;
font-size: small;
font-size: medium;
font-size: large;
font-size: x-large;
font-size: xx-large;
font-size: larger;
font-size: smaller;
font-size: 10px;
font-size: 3%;
font: small-caps 200 normal larger Arial, serif;
font: caption;
font: icon;
font: menu;
font: message-box;
font: small-caption;
font: status-bar;
}
--- NEW FILE: generated-content.css ---
a {
content: normal;
content: none;
content: "test" url("text.html") counter(par-num, upper-roman) attr(p) open-quote close-quote no-open-quote no-close-quote;
content: open-quote;
content: no-open-quote;
content: close-quote;
content: no-close-quote;
content: "test";
content: url("test");
content: counter(par-num, upper-roman);
content: attr(p);
counter-increment: none;
counter-increment: section 3;
counter-increment: section;
counter-increment: section 3 chapter;
counter-increment: section chapter 2;
counter-reset: section 3;
counter-reset: section;
counter-reset: section 3 chapter;
counter-reset: section chapter 2;
quotes: none;
quotes: '<' '>';
quotes: "'" "'";
}
--- NEW FILE: aural.css ---
h1 { azimuth: 30deg }
td.a { azimuth: far-right } /* 60deg */
#12 { azimuth: behind far-right } /* 120deg */
p.comment { azimuth: behind } /* 180deg */
h1 {
cue-before: url("pop.au");
cue-after: url("pop.au");
cue-before: none;
cue-after: none;
}
h1 {
cue: url("pop.au");
cue: url("pop.au") url("pop.wav");
cue: none none;
}
a {
elevation: 32deg;
elevation: below;
elevation: level;
elevation: above;
elevation: higher;
elevation: lower;
}
h3 { pause-after: 10% }
h3 { pause-after: 10ms }
h1 { pause: 20s }
h2 { pause: 30ms 2% }
a {
pitch-range: 80;
pitch: 1kHz;
pitch: x-low;
pitch: low;
pitch: medium;
pitch: high;
pitch: x-high;
}
blockquote.sad { play-during: url("violins.aiff") }
blockquote Q { play-during: url("harp.wav") mix }
span.quiet { play-during: none }
span.auto { play-during: auto }
a {
richness: 20;
speak-header: once;
speak-header: always;
speak-numeral: digits;
speak-numeral: continuous;
speak-punctuation: code;
speak-punctuation: none;
speak: normal;
speak: none;
speak: spell-out;
speech-rate: 20;
speech-rate: x-slow;
speech-rate: slow;
speech-rate: medium;
speech-rate: fast;
speech-rate: x-fast;
speech-rate: faster;
speech-rate: slower;
stress: 20;
}
h1 { voice-family: announcer, male }
p.part.romeo { voice-family: romeo, male }
p.part.juliet { voice-family: juliet, female }
a {
volume: 20;
volume: 10%;
volume: silent;
volume: x-soft;
volume: soft;
volume: medium;
volume: loud;
volume: x-loud;
}
--- NEW FILE: classification.css ---
a {
display: inline;
display: block;
display: list-item;
display: run-in;
display: table;
display: inline-table;
display: table-row-group;
display: table-header-group;
display: table-footer-group;
display: table-row;
display: table-column-group;
display: table-column;
display: table-cell;
display: table-caption;
display: none;
white-space: normal;
white-space: pre;
white-space: nowrap;
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
list-style-type: decimal;
list-style-type: decimal-leading-zero;
list-style-type: lower-roman;
list-style-type: upper-roman;
list-style-type: lower-greek;
list-style-type: lower-latin;
list-style-type: upper-latin;
list-style-type: armenian;
list-style-type: georgian;
list-style-type: lower-alpha;
list-style-type: upper-alpha;
list-style-type: none;
list-style-image: url("image.png");
list-style-image: none;
list-style-position: inside;
list-style-position: outside;
list-style: disc;
list-style: circle;
list-style: square;
list-style: decimal inside;
list-style: decimal-leading-zero inside;
list-style: lower-roman outside;
list-style: upper-roman outside;
list-style: lower-greek url("image.png");
list-style: lower-latin url("image.png");
list-style: upper-latin url("image.png") outside;
list-style: url("image.png") armenian inside;
list-style: url("image.png") inside armenian;
list-style: inside armenian url("image.png");
list-style: armenian inside url("image.png");
}
--- NEW FILE: paged.css ---
@page {
orphans: 12;
widows: 5;
page-break-after: auto;
page-break-after: always;
page-break-after: avoid;
page-break-after: left;
page-break-after: right;
page-break-before: auto;
page-break-before: always;
page-break-before: avoid;
page-break-before: left;
page-break-before: right;
page-break-inside: avoid;
page-break-inside: auto;
}
Received on Wednesday, 19 April 2006 07:56:06 UTC