2002/css-validator/autotest/testsuite/properties/css1/too-many-values box.css,NONE,1.1 classification.css,NONE,1.1 color-background.css,NONE,1.1 font.css,NONE,1.1 generated-content.css,NONE,1.1 paged.css,NONE,1.1 table.css,NONE,1.1 text.css,NONE,1.1 ui.css,NONE,1.1

Update of /sources/public/2002/css-validator/autotest/testsuite/properties/css1/too-many-values
In directory hutz:/tmp/cvs-serv14738/testsuite/properties/css1/too-many-values

Added Files:
	box.css classification.css color-background.css font.css 
	generated-content.css paged.css table.css text.css ui.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 white}
em { color: #ff0000 #000}
em { color: rgb(255,0,0) black }
em { color: rgb(100%, 0%, 0%) #fff}
em { color: white red rgb(0,0,0)}

a {
    background-color: transparent #f00;
    background-color: #f00 transparent;
    background-color: #ff0000 rgb(0,0,0);
    background-color: rgb(255,0,0) black;
    background-color: rgb(100%, 0%, 0%) red;
    background-color: white #fdf;

    background-image: url("image.png") none;
    background-image: none url("image.png");
    background-image: url("image.png") url("image2.png");
    background-image: none none;


    background-repeat: repeat repeat-x;
    background-repeat: repeat-x repeat;
    background-repeat: repeat-y repeat repeat-x no-repeat;

    background-attachment: scroll fixed;
    background-attachment: fixed scroll;

    background-position: 10% 10% 10%;
    background-position: 10px 10px 10px;
    background-position: right bottom 10%;
    background-position: right center bottom;

    background: rgb(80%, 10%, 10%) url("image.png") no-repeat fixed left top rgb(70%,20%,10%);
}
--- NEW FILE: table.css ---
table-caption {
    caption-side: top bottom;
    caption-side: bottom top;
    caption-side: bottom top top;
    caption-side: bottom top 10px;
}

table {
    table-layout: auto fixed;
    table-layout: fixed auto;
    table-layout: fixed auto 1px;
    table-layout: fixed 1px auto;

    border-collapse: collapse separate;
    border-collapse: separate collapse;

    border-spacing: 2px 2em 3px;
    border-spacing: 2ex 1px 1em;
}

table-cell {
    empty-cells: show hide;
    empty-cells: hide show;
}
--- NEW FILE: ui.css ---
a {
    cursor: url("cursor1"), url("cursor2"), auto, help;
    cursor: url("cursor1"), url("cursor2"), auto, crosshair, default, pointer, move, e-resize, ne-resize, nw-resize, n-resize, se-resize, sw-resize, s-resize, w-resize, text, wait, help, progress;

    outline-color: black white;
    outline-color: invert black;
    outline-color: #ffffff white;
    outline-color: rgb(50, 40, 54) invert black;

    outline-style: none solid;
    outline-style: dashed ridge dotted;

    outline-width: 1px thin;
    outline-width: thin 1px thick;
    outline-width: 1px 2px;

    outline: black white;
    outline: black solid solid thin;    
    outline: black solid 1px dashed;
}
--- NEW FILE: text.css ---
a {
    word-spacing: normal 3px;
    word-spacing: 3px normal;
    word-spacing: 3px thin;
    word-spacing: thick 3px;

    letter-spacing: normal 3px;
    letter-spacing: 3px normal;
    letter-spacing: 3px thin;
    letter-spacing: thick 3px;

    text-decoration: none underline;
    text-decoration: underline none;
    text-decoration: overline underline none;
    text-decoration: overline none underline;
    text-decoration: underline overline line-through blonk underline;

    vertical-align: baseline sub;
    vertical-align: 12% middle;
    vertical-align: 12ex 3%;
    vertical-align: middle 12%;
    vertical-align: 3% 12ex;

    text-transform: capitalize none;
    text-transform: none uppercase;
    text-transform: lowercase capitalize uppercase none;
    text-align: left right;
    text-align: right left;
    text-align: center left right justify;

    text-indent: 10px 10%;
    text-indent: 10% 10px;
    text-indent: 10% 10px 10em;

    line-height: normal 10;
    line-height: 10 normal;
    line-height: normal 10px;
    line-height: normal 10%;
    line-height: 10px 10 normal 10%;

    white-space: normal pre;
    white-space: pre normal;
    white-space: nowrap normal pre;
}
--- NEW FILE: box.css ---
a {
    /* margin */
    margin-top: 10px 9px;
    margin-right: 10px 9px;
    margin-bottom: 10px 9px;
    margin-left: 10px 9px;
    margin: 10px 11px 12px 13px 14px 15px;

    /* padding */
    padding-top: 10px 9px;
    padding-right: 10px 9px;
    padding-bottom: 10px 9px;
    padding-left: 10px 9px;
    padding: 10px 11px 12px 13px 14px 15px;

    /* borders */
    border-top-width: 10px 9px;
    border-right-width: 10px 9px;
    border-bottom-width: 10px 9px;
    border-left-width: 10px 9px;
    border-width: 10px 11px 12px 13px 14px 15px;

    border-color: blue yellow black red rgb(80%,10%,10%);

    border-style: solid hidden dotted dashed ridge;

    border-top: 1px solid black 2px;
    border-top: 1px black solid dashed;
    border-top: solid 1px black #fff;
    border-top: solid black 1px rgb(255,0,0);
    border-top: black 1px solid yellow;
    border-top: black solid 1px dotted;

    border-right: 1px solid black 2px;
    border-right: 1px black solid dashed;
    border-right: solid 1px black #fff;
    border-right: solid black 1px rgb(255,0,0);
    border-right: black 1px solid yellow;
    border-right: black solid 1px dotted;

    border-bottom: 1px solid black 2px;
    border-bottom: 1px black solid dashed;
    border-bottom: solid 1px black #fff;
    border-bottom: solid black 1px rgb(255,0,0);
    border-bottom: black 1px solid yellow;
    border-bottom: black solid 1px dotted;

    border-left: 1px solid black 2px;
    border-left: 1px black solid dashed;
    border-left: solid 1px black #fff;
    border-left: solid black 1px rgb(255,0,0);
    border-left: black 1px solid yellow;
    border-left: black solid 1px dotted;

    border: 1px solid black 2px;
    border: 1px black solid dashed;
    border: solid 1px black #fff;
    border: solid black 1px rgb(255,0,0);
    border: black 1px solid yellow;
    border: black solid 1px dotted;

    /* positionning */
    width: 10px 11px;
    width: 10% 10%;
    width: 10% 10px;
    width: 10px 10%;
    width: auto 10px;

    height: 10px 11px;
    height: 10% 10%;
    height: 10% 10px;
    height: 10px 10%;
    height: auto 10px;

    float: left right;
    float: right left;
    float: none left;
    float: left none;

    clear: none left;
    clear: left none;
    clear: left right;
    clear: right both;
    clear: both right;
}
--- NEW FILE: font.css ---
a {
    font-style: normal italic;
    font-style: italic normal;
    font-style: oblique normal italic;

    font-variant: normal small-caps;
    font-variant: small-caps normal;

    font-weight: normal bold;
    font-weight: bold 200;
    font-weight: bolder bold;
    font-weight: lighter 900;
    font-weight: 100 200 300 400 500 bold 600 700 lighter 800;

    font-size: x-small small;
    font-size: small x-small;
    font-size: medium larger smaller;
    font-size: large 10px;
    font-size: x-large 3%;
    font-size: larger 3%;
    font-size: smaller 10px;
    font-size: 10px medium larger;
    font-size: 3% smaller large;

    font: italic medium small-caps 200 normal larger Arial, serif;
    font: caption icon;
    font: icon small-caps;
    font: menu 200 normal Arial, Serif;
}
--- NEW FILE: generated-content.css ---
a {
    content: normal none;
    content: none "test";
    content: "test" url("text.html") counter(par-num, upper-roman) attr(p) open-quote normal close-quote no-open-quote no-close-quote;

    counter-increment: none section 3;
    counter-increment: section 3 none;
    counter-increment: section none;
    counter-increment: section none

    counter-reset: none section 3;
    counter-reset: section 3 none;
    counter-reset: section none;

    quotes: none '"' '"';
    quotes: '<' '>' none;
    quotes: '<' '>' '"' none;
    quotes: '<' '>' '"' white;
    quotes: "'" none "'";
}
--- NEW FILE: classification.css ---
a {
    display: inline block;
    display: block inline;
    display: list-item none run-in;
    display: run-in table table-row;

    white-space: normal pre nowrap;
    white-space: pre normal;
    white-space: nowrap pre;

    list-style-type: disc circle;
    list-style-type: circle disc;
    list-style-type: square none;
    list-style-type: none square;
    list-style-type: decimal georgian armenian circle;

    list-style-image: url("image.png") none;
    list-style-image: none url("image.png");

    list-style-position: inside outside;
    list-style-position: outside inside;

    list-style: disc circle;
    list-style: circle disc;
    list-style: decimal inside outside;
    list-style: upper-latin url("image.png") outside decimal;
    list-style: url("image.png") armenian inside url("image2.png");
}
--- NEW FILE: paged.css ---
@page {
    orphans: 12 2;
    widows: 5 54;

    page-break-after: auto always;
    page-break-after: always auto;
    page-break-after: avoid auto always left right;

    page-break-before: auto always;
    page-break-before: always auto;
    page-break-before: avoid auto always left right;

    page-break-inside: avoid auto;
    page-break-inside: auto avoid;
}

Received on Wednesday, 19 April 2006 07:56:25 UTC