2002/css-validator/autotest/testsuite/properties/css1/ok 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/ok
In directory hutz:/tmp/cvs-serv14738/testsuite/properties/css1/ok

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 } /* #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 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: 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%;

    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-color: blue;
    border-color: blue yellow;
    border-color: blue yellow black;
    border-color: blue yellow black red;
    border-color: blue yellow black red;

    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: auto;

    height: 10px;
    height: auto;

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

    clear: none;
    clear: left;
    clear: right;
    clear: both;
}
--- 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;
}
--- 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: classification.css ---
a {
    display: inline;
    display: block;
    display: list-item;
    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: lower-roman;
    list-style-type: upper-roman;
    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: lower-roman outside;
    list-style: upper-roman outside;
    list-style: url("image.png") lower-alpha inside;
    list-style: url("image.png") inside lower-alpha;
    list-style: inside lower-alpha url("image.png");
    list-style: lower-alpha 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:29 UTC