diff options
Diffstat (limited to 'tests/wpt/css-tests/css-ui-3_dev')
130 files changed, 1393 insertions, 1058 deletions
diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-001.htm b/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-001.htm deleted file mode 100644 index ec1861d273d..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-001.htm +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -<html> - <head> - <title>CSS Test: Box Sizing - Padding-Box with specified width/height</title> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com"> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing"> - <meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge."> - <style type="text/css"> - .container { - width: 300px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - width: 50%; - z-index: 1; - float: left; - padding: 0px 5px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - </style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-002.htm b/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-002.htm deleted file mode 100644 index 0cfdca4f3d3..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-002.htm +++ /dev/null @@ -1,45 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -<html> - <head> - <title>CSS Test: Box Sizing - Padding-Box with specified width/height</title> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com"> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing"> - <meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge."> - <style type="text/css"> - .container { - width: 300px; - height: 400px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - width: 50%; - height: 100%; - z-index: 1; - float: left; - padding: 25px 10px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - </style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-003.htm b/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-003.htm deleted file mode 100644 index fdb22e5a377..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-padding-box-003.htm +++ /dev/null @@ -1,49 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -<html> - <head> - <title>CSS Test: Box Sizing - Padding-Box with min/max width/height</title> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com"> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing"> - <meta name="assert" content="box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge."> - <style type="text/css"> - .container { - min-width: 500px; - max-width: 700px; - min-height: 70px; - max-height: 90px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - min-width: 250px; - max-width: 350px; - min-height: 70px; - max-height: 90px; - z-index: 1; - float: left; - padding: 5px 5px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - </style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-replaced-001.htm b/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-replaced-001.htm index fdb2b131175..f0c1c7b445b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-replaced-001.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/box-sizing-replaced-001.htm @@ -21,7 +21,7 @@ .with-padding { padding: 5px 5px; - box-sizing: padding-box; + box-sizing: border-box; } #img1 { diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-3.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-3.htm index e49edfe2bef..362b46ec58f 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-3.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-3.htm @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Box Model addition (13 tests)</h2> + <h2>Box Model addition (10 tests)</h2> <table width="100%"> <col id="test-column"> <col id="refs-column"> @@ -37,7 +37,7 @@ <tr><th colspan="4" scope="rowgroup"> <a href="#s3.1">+</a> <a href="http://www.w3.org/TR/css3-ui/#box-sizing">3.1 box-sizing property</a></th></tr> - <!-- 13 tests --> + <!-- 10 tests --> <tr id="box-sizing-border-box-001-3.1" class="primary"> <td><strong> <a href="box-sizing-border-box-001.htm">box-sizing-border-box-001</a></strong></td> @@ -115,39 +115,6 @@ </ul> </td> </tr> - <tr id="box-sizing-padding-box-001-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-001.htm">box-sizing-padding-box-001</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with specified width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge.</li> - </ul> - </td> - </tr> - <tr id="box-sizing-padding-box-002-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-002.htm">box-sizing-padding-box-002</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with specified width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge.</li> - </ul> - </td> - </tr> - <tr id="box-sizing-padding-box-003-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-003.htm">box-sizing-padding-box-003</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with min/max width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge.</li> - </ul> - </td> - </tr> <tr id="box-sizing-replaced-001-3.1" class="primary image"> <td><strong> <a href="box-sizing-replaced-001.htm">box-sizing-replaced-001</a></strong></td> @@ -185,12 +152,30 @@ <tbody id="s3.1.#box-sizing-example"> <!-- 0 tests --> </tbody> - <tbody id="s3.1.#issue-9bd5c115"> + <tbody id="s3.1.#example-ede4dfdf"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#max-inner-height"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#max-inner-width"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#min-inner-height"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#min-inner-width"> <!-- 0 tests --> </tbody> <tbody id="s3.1.#propdef-box-sizing"> <!-- 0 tests --> </tbody> + <tbody id="s3.1.#valdef-box-sizing-border-box"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#valdef-box-sizing-content-box"> + <!-- 0 tests --> + </tbody> </table> </body> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-4.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-4.htm index 9c79caa37ae..321970657f7 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-4.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-4.htm @@ -143,6 +143,12 @@ </td> </tr> </tbody> + <tbody id="s4.4.#example-4b3084c1"> + <!-- 0 tests --> + </tbody> + <tbody id="s4.4.#example-bcd0e0d3"> + <!-- 0 tests --> + </tbody> <tbody id="s4.4.#invert"> <!-- 0 tests --> </tbody> @@ -174,6 +180,12 @@ </td> </tr> </tbody> + <tbody id="s4.5.#example-8c7e0106"> + <!-- 0 tests --> + </tbody> + <tbody id="s4.5.#negative-offset"> + <!-- 0 tests --> + </tbody> <tbody id="s4.5.#propdef-outline-offset"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-5.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-5.htm index 19583e3e7c8..69ab050dd00 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-5.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-5.htm @@ -116,6 +116,9 @@ </td> </tr> </tbody> + <tbody id="s5.1.#example-0ff410a0"> + <!-- 0 tests --> + </tbody> <tbody id="s5.1.#propdef-resize"> <!-- 0 tests --> </tbody> @@ -187,6 +190,24 @@ <tbody id="s5.2.#ellipsis-scrolling"> <!-- 0 tests --> </tbody> + <tbody id="s5.2.#example-4d792064"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#example-c43e380d"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#example-d22e5e5b"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-clip"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-ellipsis"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-string"> + <!-- 0 tests --> + </tbody> <tbody id="s5.2.#propdef-text-overflow"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-6.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-6.htm index 6080f5a4c75..c55a9c49df4 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-6.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-6.htm @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Pointing Devices and Keyboards (138 tests)</h2> + <h2>Pointing Devices and Keyboards (142 tests)</h2> <table width="100%"> <col id="test-column"> <col id="refs-column"> @@ -66,44 +66,44 @@ </ul> </td> </tr> - <tr id="cursor-image-003-6.1.1" class="primary image interact"> + <tr id="cursor-image-003-6.1.1" class="primary image interact may"> <td><strong> <a href="cursor-image-003.htm">cursor-image-003</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="may" title="Behavior tested is preferred but optional">Optional</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an ICO image is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-004-6.1.1" class="primary image interact"> + <tr id="cursor-image-004-6.1.1" class="primary image interact may"> <td><strong> <a href="cursor-image-004.htm">cursor-image-004</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="may" title="Behavior tested is preferred but optional">Optional</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an ICO image, with its own hotspot, is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-005-6.1.1" class="primary image interact svg"> + <tr id="cursor-image-005-6.1.1" class="primary interact svg"> <td><strong> <a href="cursor-image-005.htm">cursor-image-005</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that a fixed size SVG image is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-005-nfs-6.1.1" class="primary image interact svg"> + <tr id="cursor-image-005-nfs-6.1.1" class="primary interact svg"> <td><strong> <a href="cursor-image-005-nfs.htm">cursor-image-005-nfs</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images.</li> @@ -661,6 +661,9 @@ </td> </tr> </tbody> + <tbody id="s6.1.1.#example-4a59cfe4"> + <!-- 0 tests --> + </tbody> <tbody id="s6.1.1.#propdef-cursor"> <!-- 0 tests --> </tbody> @@ -715,6 +718,9 @@ </td> </tr> </tbody> + <tbody id="s6.2.1.#example-24147f22"> + <!-- 0 tests --> + </tbody> <tbody id="s6.2.1.#propdef-caret-color"> <!-- 0 tests --> </tbody> @@ -728,7 +734,7 @@ <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1">+</a> <a href="http://www.w3.org/TR/css3-ui/#nav-dir">6.3.1 Directional focus navigation: the nav-up, nav-right, nav-down, nav-left properties</a></th></tr> - <!-- 79 tests --> + <!-- 83 tests --> <tr id="nav-dir-001-6.3.1" class="primary interact"> <td><strong> <a href="nav-dir-001.htm">nav-dir-001</a></strong></td> @@ -784,6 +790,50 @@ </ul> </td> </tr> + <tr id="nav-dir-missing-1-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-1.htm">nav-dir-missing-1</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-2-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-2.htm">nav-dir-missing-2</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-3-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-3.htm">nav-dir-missing-3</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-4-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-4.htm">nav-dir-missing-4</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> <tr id="nav-dir-target-001-6.3.1" class="primary interact"> <td><strong> <a href="nav-dir-target-001.htm">nav-dir-target-001</a></strong></td> @@ -1614,13 +1664,19 @@ <tbody id="s6.3.1.1"> <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1.1">+</a> - <a href="http://www.w3.org/TR/css3-ui/#example-positioned-buttons">6.3.1.1 Example: positioned buttons</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#example-b196d206">6.3.1.1 Example: positioned buttons</a></th></tr> + <!-- 0 tests --> + </tbody> + <tbody id="s6.3.1.1.#example-positioned-buttons"> <!-- 0 tests --> </tbody> <tbody id="s6.3.1.2"> <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1.2">+</a> - <a href="http://www.w3.org/TR/css3-ui/#example-moving-focus-to-inside-a-frame">6.3.1.2 Example: moving focus to inside a frame</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#example-381d7fe7">6.3.1.2 Example: moving focus to inside a frame</a></th></tr> + <!-- 0 tests --> + </tbody> + <tbody id="s6.3.1.2.#example-moving-focus-to-inside-a-frame"> <!-- 0 tests --> </tbody> <tbody id="s6.3.2"> @@ -1629,13 +1685,10 @@ <a href="http://www.w3.org/TR/css3-ui/#input-method-editor">6.3.2 Obsolete: the ime-mode property</a></th></tr> <!-- 0 tests --> </tbody> - <tbody id="s.#abstract"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-align-3"> + <tbody id="s6.3.2.#example-8592b31b"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-animations-1"> + <tbody id="s.#abstract"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-css-backgrounds-3"> @@ -1644,24 +1697,9 @@ <tbody id="s.#biblio-css-color-3"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-color-4"> - <!-- 0 tests --> - </tbody> <tbody id="s.#biblio-css-images-3"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-masking-1"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-overflow-3"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-position-3"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-style-attr-1"> - <!-- 0 tests --> - </tbody> <tbody id="s.#biblio-css-values-3"> <!-- 0 tests --> </tbody> @@ -1677,6 +1715,9 @@ <tbody id="s.#biblio-css21"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-css3-background"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-css3-writing-modes"> <!-- 0 tests --> </tbody> @@ -1686,18 +1727,30 @@ <tbody id="s.#biblio-css3color"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-css4-images"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-cssui"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-html5"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-png"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-rfc2119"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-select"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-svg"> + <!-- 0 tests --> + </tbody> + <tbody id="s.#biblio-svg-integration"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-svg10"> <!-- 0 tests --> </tbody> @@ -1716,6 +1769,12 @@ <tbody id="s.#conventions"> <!-- 0 tests --> </tbody> + <tbody id="s.#cr-exit-criteria"> + <!-- 0 tests --> + </tbody> + <tbody id="s.#example-f839f6c8"> + <!-- 0 tests --> + </tbody> <tbody id="s.#experimental"> <!-- 0 tests --> </tbody> @@ -1731,9 +1790,6 @@ <tbody id="s.#informative"> <!-- 0 tests --> </tbody> - <tbody id="s.#issues-index"> - <!-- 0 tests --> - </tbody> <tbody id="s.#normative"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-B.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-B.htm index f9e0c2d5b7a..26842f7207b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-B.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-B.htm @@ -33,7 +33,19 @@ <a href="http://www.w3.org/TR/css3-ui/#changes">B Changes</a></th></tr> <!-- 0 tests --> </tbody> - <tbody id="sB.#changes-list"> + <tbody id="sB.#changes-since-2012"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-02"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-03"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-04"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-05"> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-C.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-C.htm index 367fe019986..203b8a0dfbb 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-C.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-C.htm @@ -3,7 +3,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> - <title>Default style sheet additions for HTML - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <title>Considerations for Security and Privacy - CSS Basic User Interface Module Level 3 CR Test Suite</title> <style type="text/css"> @import "http://www.w3.org/StyleSheets/TR/base.css"; @import "../indices.css"; @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Default style sheet additions for HTML (0 tests)</h2> + <h2>Considerations for Security and Privacy (0 tests)</h2> <table width="100%"> <col id="test-column"> <col id="refs-column"> @@ -30,7 +30,7 @@ <tbody id="sC"> <tr><th colspan="4" scope="rowgroup"> <a href="#sC">+</a> - <a href="http://www.w3.org/TR/css3-ui/#default-style-sheet">C Default style sheet additions for HTML</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#security-privacy-considerations">C Considerations for Security and Privacy</a></th></tr> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-D.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-D.htm index 4b6e38caa52..efa9c1192b6 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-D.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-D.htm @@ -3,7 +3,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> - <title>Test Suite - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <title>Default style sheet additions for HTML - CSS Basic User Interface Module Level 3 CR Test Suite</title> <style type="text/css"> @import "http://www.w3.org/StyleSheets/TR/base.css"; @import "../indices.css"; @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Test Suite (0 tests)</h2> + <h2>Default style sheet additions for HTML (0 tests)</h2> <table width="100%"> <col id="test-column"> <col id="refs-column"> @@ -30,7 +30,7 @@ <tbody id="sD"> <tr><th colspan="4" scope="rowgroup"> <a href="#sD">+</a> - <a href="http://www.w3.org/TR/css3-ui/#test-suite">D Test Suite</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#default-style-sheet">D Default style sheet additions for HTML</a></th></tr> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/chapter-E.htm b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-E.htm new file mode 100644 index 00000000000..d14b584156c --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/chapter-E.htm @@ -0,0 +1,39 @@ + + +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> +<html> + <head> + <title>Test Suite - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <style type="text/css"> + @import "http://www.w3.org/StyleSheets/TR/base.css"; + @import "../indices.css"; + </style> + </head> + + <body> + + <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> + <h2>Test Suite (0 tests)</h2> + <table width="100%"> + <col id="test-column"> + <col id="refs-column"> + <col id="flags-column"> + <col id="info-column"> + <thead> + <tr> + <th>Test</th> + <th><abbr title="Rendering References">Refs</abbr></th> + <th>Flags</th> + <th>Info</th> + </tr> + </thead> + <tbody id="sE"> + <tr><th colspan="4" scope="rowgroup"> + <a href="#sE">+</a> + <a href="http://www.w3.org/TR/css3-ui/#test-suite">E Test Suite</a></th></tr> + <!-- 0 tests --> + </tbody> + </table> + + </body> +</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-001.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-001.htm index 3af1ed257d7..737fdd12e4d 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-001.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-001.htm @@ -1,16 +1,19 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> <meta content="interact image" name="flags"> <meta charset="UTF-8"> <meta content="Test checks that a PNG image supported as a custom cursor." name="assert"> <style> div.test{background: #D2B48C; border: 2px solid #555; - cursor:url(support/cursors/woolly-64.png) 41 32, help; width:128px; height: 128px} + cursor:url(support/cursors/woolly-64.png) 41 32, help; + width: 128px; height: 128px} </style> </head><body> <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-002.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-002.htm index b2cde6175f8..da8af05c05b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-002.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-002.htm @@ -1,6 +1,7 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> <meta content="interact image" name="flags"> <meta charset="UTF-8"> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-003.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-003.htm index 9521e7c32eb..aefa14eb269 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-003.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-003.htm @@ -1,8 +1,9 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> -<meta content="interact image" name="flags"> +<meta content="interact image may" name="flags"> <meta charset="UTF-8"> <meta content="Test checks that an ICO image is supported as a custom cursor." name="assert"> @@ -15,4 +16,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-004.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-004.htm index c4a3d52470c..9be58fd9692 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-004.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-004.htm @@ -1,8 +1,9 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> -<meta content="interact image" name="flags"> +<meta content="interact image may" name="flags"> <meta charset="UTF-8"> <meta content="Test checks that an ICO image, with its own hotspot, is supported as a custom cursor." name="assert"> <style> @@ -14,4 +15,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005-nfs.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005-nfs.htm index ed418f603ad..b5aae9e6663 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005-nfs.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005-nfs.htm @@ -1,9 +1,10 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> <link href="http://www.w3.org/TR/css3-images/#default-object-size" rel="help"> -<meta content="interact image svg" name="flags"> +<meta content="interact svg" name="flags"> <meta charset="UTF-8"> <meta content="Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images." name="assert"> <style> @@ -15,4 +16,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005.htm index c88c1fc4dcf..1f2e3a066a4 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-005.htm @@ -1,8 +1,9 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> -<meta content="interact image svg" name="flags"> +<meta content="interact svg" name="flags"> <meta charset="UTF-8"> <meta content="Test checks that a fixed size SVG image is supported as a custom cursor." name="assert"> <style> @@ -14,4 +15,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-009.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-009.htm index 71e2b8ae8f6..e7ddb4dad17 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-009.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-009.htm @@ -1,6 +1,7 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value, no fallback</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> <meta content="interact image invalid" name="flags"> <meta charset="UTF-8"> @@ -16,4 +17,5 @@ <p>If inside the rectangle the cursor changes to the word "FAIL" on a red background, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-012.htm b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-012.htm index 9270649d4dd..150a6f5078b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-012.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/cursor-image-012.htm @@ -1,6 +1,7 @@ <!DOCTYPE html> <html><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley"> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal"> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help"> <meta content="interact image" name="flags"> <meta charset="UTF-8"> @@ -16,4 +17,5 @@ a rainbow AND is not a rainbow when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-1.htm b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-1.htm new file mode 100644 index 00000000000..66dd5dd9217 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-1.htm @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal"> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help"> +<meta content="interact" name="flags"> +<meta content="Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation." name="assert"> +<style> +#start { +nav-right: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating right moves the focus to the "FINISH" link.</p> + + <a href="" id="start">START</a> <a href="" id="finish">FINISH</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-2.htm b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-2.htm new file mode 100644 index 00000000000..352bbab2891 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-2.htm @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal"> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help"> +<meta content="interact" name="flags"> +<meta content="Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation." name="assert"> +<style> +#start { +nav-left: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating left moves the focus to the "FINISH" link.</p> + + <a href="" id="finish">FINISH</a> <a href="" id="start">START</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-3.htm b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-3.htm new file mode 100644 index 00000000000..2c4c3919229 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-3.htm @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal"> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help"> +<meta content="interact" name="flags"> +<meta content="Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation." name="assert"> +<style> +#start { +nav-down: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating down moves the focus to the "FINISH" link.</p> + + <a href="" id="start">START</a><br> + <a href="" id="finish">FINISH</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-4.htm b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-4.htm new file mode 100644 index 00000000000..49fbd650512 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/nav-dir-missing-4.htm @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal"> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help"> +<meta content="interact" name="flags"> +<meta content="Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation." name="assert"> +<style> +#start { +nav-up: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating up moves the focus to the "FINISH" link.</p> + + <a href="" id="finish">FINISH</a><br> + <a href="" id="start">START</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/outline-offset.htm b/tests/wpt/css-tests/css-ui-3_dev/html/reference/outline-offset.htm index 16d771f9446..859706a2a69 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/reference/outline-offset.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/outline-offset.htm @@ -16,7 +16,7 @@ </style> </head> <body> - <p>PASS is there a space between the border.</p> + <p>PASS if there a space between the border.</p> <div> </div> diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/green.ico b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/green.ico Binary files differnew file mode 100644 index 00000000000..691f61166f0 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/green.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/h100.svg b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/h100.svg new file mode 100644 index 00000000000..e7bd34342c1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/h100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/h100_r1-1.svg new file mode 100644 index 00000000000..f77cfcbb9d4 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/h100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/r1-1.svg new file mode 100644 index 00000000000..7f4b4516635 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/red.ico b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/red.ico Binary files differnew file mode 100644 index 00000000000..22a7b36fe3e --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/red.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100.svg b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100.svg new file mode 100644 index 00000000000..0b91c8539d2 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100_h100.svg b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100_h100.svg new file mode 100644 index 00000000000..f094372ec6a --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100_h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100_r1-1.svg new file mode 100644 index 00000000000..5d44b4ffa01 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/reference/support/w100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/green.ico b/tests/wpt/css-tests/css-ui-3_dev/html/support/green.ico Binary files differnew file mode 100644 index 00000000000..691f61166f0 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/green.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/h100.svg b/tests/wpt/css-tests/css-ui-3_dev/html/support/h100.svg new file mode 100644 index 00000000000..e7bd34342c1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/h100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/html/support/h100_r1-1.svg new file mode 100644 index 00000000000..f77cfcbb9d4 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/h100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/html/support/r1-1.svg new file mode 100644 index 00000000000..7f4b4516635 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/red.ico b/tests/wpt/css-tests/css-ui-3_dev/html/support/red.ico Binary files differnew file mode 100644 index 00000000000..22a7b36fe3e --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/red.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/w100.svg b/tests/wpt/css-tests/css-ui-3_dev/html/support/w100.svg new file mode 100644 index 00000000000..0b91c8539d2 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/w100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/w100_h100.svg b/tests/wpt/css-tests/css-ui-3_dev/html/support/w100_h100.svg new file mode 100644 index 00000000000..f094372ec6a --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/w100_h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/support/w100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/html/support/w100_r1-1.svg new file mode 100644 index 00000000000..5d44b4ffa01 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/html/support/w100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/toc.htm b/tests/wpt/css-tests/css-ui-3_dev/html/toc.htm index d8befe0624e..82247e92f93 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/html/toc.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/html/toc.htm @@ -32,7 +32,7 @@ <tbody id="s3"> <tr><th><a href="chapter-3.htm">Chapter 3 - Box Model addition</a></th> - <td>(13 Tests)</td></tr> + <td>(10 Tests)</td></tr> </tbody> <tbody id="s4"> <tr><th><a href="chapter-4.htm">Chapter 4 - @@ -47,7 +47,7 @@ <tbody id="s6"> <tr><th><a href="chapter-6.htm">Chapter 6 - Pointing Devices and Keyboards</a></th> - <td>(138 Tests)</td></tr> + <td>(142 Tests)</td></tr> </tbody> <tbody id="sA"> <tr><th><a href="chapter-A.htm">Appendix A - @@ -61,11 +61,16 @@ </tbody> <tbody id="sC"> <tr><th><a href="chapter-C.htm">Appendix C - - Default style sheet additions for HTML</a></th> + Considerations for Security and Privacy</a></th> <td>(0 Tests)</td></tr> </tbody> <tbody id="sD"> <tr><th><a href="chapter-D.htm">Appendix D - + Default style sheet additions for HTML</a></th> + <td>(0 Tests)</td></tr> + </tbody> + <tbody id="sE"> + <tr><th><a href="chapter-E.htm">Appendix E - Test Suite</a></th> <td>(0 Tests)</td></tr> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/implementation-report-TEMPLATE.data b/tests/wpt/css-tests/css-ui-3_dev/implementation-report-TEMPLATE.data index 68cc9e0bd9d..5ceb8a7c1ed 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/implementation-report-TEMPLATE.data +++ b/tests/wpt/css-tests/css-ui-3_dev/implementation-report-TEMPLATE.data @@ -2,346 +2,348 @@ # UA string (if applicable) # http://test.csswg.org/suites/css-ui-3_dev/DATESTAMP/ # See http://wiki.csswg.org/test/implementation-report for instructions -testname result comment -html4/box-sizing-border-box-001.htm ? -xhtml1/box-sizing-border-box-001.xht ? -html4/box-sizing-border-box-002.htm ? -xhtml1/box-sizing-border-box-002.xht ? -html4/box-sizing-border-box-003.htm ? -xhtml1/box-sizing-border-box-003.xht ? -html4/box-sizing-border-box-004.htm ? -xhtml1/box-sizing-border-box-004.xht ? -html4/box-sizing-content-box-001.htm ? -xhtml1/box-sizing-content-box-001.xht ? -html4/box-sizing-content-box-002.htm ? -xhtml1/box-sizing-content-box-002.xht ? -html4/box-sizing-content-box-003.htm ? -xhtml1/box-sizing-content-box-003.xht ? -html4/box-sizing-padding-box-001.htm ? -xhtml1/box-sizing-padding-box-001.xht ? -html4/box-sizing-padding-box-002.htm ? -xhtml1/box-sizing-padding-box-002.xht ? -html4/box-sizing-padding-box-003.htm ? -xhtml1/box-sizing-padding-box-003.xht ? -html4/box-sizing-replaced-001.htm ? -xhtml1/box-sizing-replaced-001.xht ? -html4/box-sizing-replaced-002.htm ? -xhtml1/box-sizing-replaced-002.xht ? -html4/box-sizing-replaced-003.htm ? -xhtml1/box-sizing-replaced-003.xht ? -html4/caret-color-001.htm ? -xhtml1/caret-color-001.xht ? -html4/caret-color-002.htm ? -xhtml1/caret-color-002.xht ? -html4/caret-color-003.htm ? -xhtml1/caret-color-003.xht ? -html4/cursor-image-001.htm ? -xhtml1/cursor-image-001.xht ? -html4/cursor-image-002.htm ? -xhtml1/cursor-image-002.xht ? -html4/cursor-image-003.htm ? -xhtml1/cursor-image-003.xht ? -html4/cursor-image-004.htm ? -xhtml1/cursor-image-004.xht ? -html4/cursor-image-005-nfs.htm ? -xhtml1/cursor-image-005-nfs.xht ? -html4/cursor-image-005.htm ? -xhtml1/cursor-image-005.xht ? -html4/cursor-image-006.htm ? -xhtml1/cursor-image-006.xht ? -html4/cursor-image-007.htm ? -xhtml1/cursor-image-007.xht ? -html4/cursor-image-008.htm ? -xhtml1/cursor-image-008.xht ? -html4/cursor-image-009.htm ? -xhtml1/cursor-image-009.xht ? -html4/cursor-image-010.htm ? -xhtml1/cursor-image-010.xht ? -html4/cursor-image-011.htm ? -xhtml1/cursor-image-011.xht ? -html4/cursor-image-012.htm ? -xhtml1/cursor-image-012.xht ? -html4/cursor-image-png-001.htm ? -xhtml1/cursor-image-png-001.xht ? -html4/cursor-image-png-002.htm ? -xhtml1/cursor-image-png-002.xht ? -html4/cursor-image-png-003.htm ? -xhtml1/cursor-image-png-003.xht ? -html4/cursor-image-png-004.htm ? -xhtml1/cursor-image-png-004.xht ? -html4/cursor-image-png-005.htm ? -xhtml1/cursor-image-png-005.xht ? -html4/cursor-image-png-006.htm ? -xhtml1/cursor-image-png-006.xht ? -html4/cursor-image-png-007.htm ? -xhtml1/cursor-image-png-007.xht ? -html4/cursor-image-png-008.htm ? -xhtml1/cursor-image-png-008.xht ? -html4/cursor-image-png-009.htm ? -xhtml1/cursor-image-png-009.xht ? -html4/cursor-image-png-010.htm ? -xhtml1/cursor-image-png-010.xht ? -html4/cursor-image-png-011.htm ? -xhtml1/cursor-image-png-011.xht ? -html4/cursor-image-png-012.htm ? -xhtml1/cursor-image-png-012.xht ? -html4/cursor-image-png-013.htm ? -xhtml1/cursor-image-png-013.xht ? -html4/cursor-image-png-014.htm ? -xhtml1/cursor-image-png-014.xht ? -html4/cursor-image-png-015.htm ? -xhtml1/cursor-image-png-015.xht ? -html4/cursor-image-png-016.htm ? -xhtml1/cursor-image-png-016.xht ? -html4/cursor-image-png-017.htm ? -xhtml1/cursor-image-png-017.xht ? -html4/cursor-image-png-018.htm ? -xhtml1/cursor-image-png-018.xht ? -html4/cursor-image-png-019.htm ? -xhtml1/cursor-image-png-019.xht ? -html4/cursor-image-png-020.htm ? -xhtml1/cursor-image-png-020.xht ? -html4/cursor-image-png-021.htm ? -xhtml1/cursor-image-png-021.xht ? -html4/cursor-image-png-022.htm ? -xhtml1/cursor-image-png-022.xht ? -html4/cursor-image-png-023.htm ? -xhtml1/cursor-image-png-023.xht ? -html4/cursor-image-png-024.htm ? -xhtml1/cursor-image-png-024.xht ? -html4/cursor-image-png-025.htm ? -xhtml1/cursor-image-png-025.xht ? -html4/cursor-image-png-026.htm ? -xhtml1/cursor-image-png-026.xht ? -html4/cursor-image-png-027.htm ? -xhtml1/cursor-image-png-027.xht ? -html4/cursor-image-png-028.htm ? -xhtml1/cursor-image-png-028.xht ? -html4/cursor-image-png-029.htm ? -xhtml1/cursor-image-png-029.xht ? -html4/cursor-image-png-030.htm ? -xhtml1/cursor-image-png-030.xht ? -html4/cursor-image-png-031.htm ? -xhtml1/cursor-image-png-031.xht ? -html4/cursor-image-png-032.htm ? -xhtml1/cursor-image-png-032.xht ? -html4/cursor-image-png-033.htm ? -xhtml1/cursor-image-png-033.xht ? -html4/cursor-image-png-034.htm ? -xhtml1/cursor-image-png-034.xht ? -html4/cursor-image-png-035.htm ? -xhtml1/cursor-image-png-035.xht ? -html4/cursor-image-png-036.htm ? -xhtml1/cursor-image-png-036.xht ? -html4/cursor-image-png-037.htm ? -xhtml1/cursor-image-png-037.xht ? -html4/cursor-image-png-038.htm ? -xhtml1/cursor-image-png-038.xht ? -html4/cursor-image-png-039.htm ? -xhtml1/cursor-image-png-039.xht ? -html4/cursor-image-png-040.htm ? -xhtml1/cursor-image-png-040.xht ? -html4/cursor-image-png-041.htm ? -xhtml1/cursor-image-png-041.xht ? -html4/cursor-image-png-042.htm ? -xhtml1/cursor-image-png-042.xht ? -html4/cursor-image-png-043.htm ? -xhtml1/cursor-image-png-043.xht ? -html4/nav-dir-001.htm ? -xhtml1/nav-dir-001.xht ? -html4/nav-dir-002.htm ? -xhtml1/nav-dir-002.xht ? -html4/nav-dir-003.htm ? -xhtml1/nav-dir-003.xht ? -html4/nav-dir-004.htm ? -xhtml1/nav-dir-004.xht ? -html4/nav-dir-005.htm ? -xhtml1/nav-dir-005.xht ? -html4/nav-dir-target-001.htm ? -xhtml1/nav-dir-target-001.xht ? -html4/nav-dir-target-002.htm ? -xhtml1/nav-dir-target-002.xht ? -html4/nav-dir-target-003.htm ? -xhtml1/nav-dir-target-003.xht ? -html4/nav-dir-target-004.htm ? -xhtml1/nav-dir-target-004.xht ? -html4/nav-dir-target-005.htm ? -xhtml1/nav-dir-target-005.xht ? -html4/nav-dir-target-006.htm ? -xhtml1/nav-dir-target-006.xht ? -html4/nav-down-000.htm ? -xhtml1/nav-down-000.xht ? -html4/nav-down-001.htm ? -xhtml1/nav-down-001.xht ? -html4/nav-down-002.htm ? -xhtml1/nav-down-002.xht ? -html4/nav-down-003.htm ? -xhtml1/nav-down-003.xht ? -html4/nav-down-004.htm ? -xhtml1/nav-down-004.xht ? -html4/nav-down-005.htm ? -xhtml1/nav-down-005.xht ? -html4/nav-down-006.htm ? -xhtml1/nav-down-006.xht ? -html4/nav-down-007.htm ? -xhtml1/nav-down-007.xht ? -html4/nav-down-008.htm ? -xhtml1/nav-down-008.xht ? -html4/nav-down-009.htm ? -xhtml1/nav-down-009.xht ? -html4/nav-down-010.htm ? -xhtml1/nav-down-010.xht ? -html4/nav-down-011.htm ? -xhtml1/nav-down-011.xht ? -html4/nav-down-012.htm ? -xhtml1/nav-down-012.xht ? -html4/nav-down-013.htm ? -xhtml1/nav-down-013.xht ? -html4/nav-down-014.htm ? -xhtml1/nav-down-014.xht ? -html4/nav-down-015.htm ? -xhtml1/nav-down-015.xht ? -html4/nav-down-016.htm ? -xhtml1/nav-down-016.xht ? -html4/nav-left-000.htm ? -xhtml1/nav-left-000.xht ? -html4/nav-left-001.htm ? -xhtml1/nav-left-001.xht ? -html4/nav-left-002.htm ? -xhtml1/nav-left-002.xht ? -html4/nav-left-003.htm ? -xhtml1/nav-left-003.xht ? -html4/nav-left-004.htm ? -xhtml1/nav-left-004.xht ? -html4/nav-left-005.htm ? -xhtml1/nav-left-005.xht ? -html4/nav-left-006.htm ? -xhtml1/nav-left-006.xht ? -html4/nav-left-007.htm ? -xhtml1/nav-left-007.xht ? -html4/nav-left-008.htm ? -xhtml1/nav-left-008.xht ? -html4/nav-left-009.htm ? -xhtml1/nav-left-009.xht ? -html4/nav-left-010.htm ? -xhtml1/nav-left-010.xht ? -html4/nav-left-011.htm ? -xhtml1/nav-left-011.xht ? -html4/nav-left-012.htm ? -xhtml1/nav-left-012.xht ? -html4/nav-left-013.htm ? -xhtml1/nav-left-013.xht ? -html4/nav-left-014.htm ? -xhtml1/nav-left-014.xht ? -html4/nav-left-015.htm ? -xhtml1/nav-left-015.xht ? -html4/nav-left-016.htm ? -xhtml1/nav-left-016.xht ? -html4/nav-right-000.htm ? -xhtml1/nav-right-000.xht ? -html4/nav-right-001.htm ? -xhtml1/nav-right-001.xht ? -html4/nav-right-002.htm ? -xhtml1/nav-right-002.xht ? -html4/nav-right-003.htm ? -xhtml1/nav-right-003.xht ? -html4/nav-right-004.htm ? -xhtml1/nav-right-004.xht ? -html4/nav-right-005.htm ? -xhtml1/nav-right-005.xht ? -html4/nav-right-006.htm ? -xhtml1/nav-right-006.xht ? -html4/nav-right-007.htm ? -xhtml1/nav-right-007.xht ? -html4/nav-right-008.htm ? -xhtml1/nav-right-008.xht ? -html4/nav-right-009.htm ? -xhtml1/nav-right-009.xht ? -html4/nav-right-010.htm ? -xhtml1/nav-right-010.xht ? -html4/nav-right-011.htm ? -xhtml1/nav-right-011.xht ? -html4/nav-right-012.htm ? -xhtml1/nav-right-012.xht ? -html4/nav-right-013.htm ? -xhtml1/nav-right-013.xht ? -html4/nav-right-014.htm ? -xhtml1/nav-right-014.xht ? -html4/nav-right-015.htm ? -xhtml1/nav-right-015.xht ? -html4/nav-right-016.htm ? -xhtml1/nav-right-016.xht ? -html4/nav-up-000.htm ? -xhtml1/nav-up-000.xht ? -html4/nav-up-001.htm ? -xhtml1/nav-up-001.xht ? -html4/nav-up-002.htm ? -xhtml1/nav-up-002.xht ? -html4/nav-up-003.htm ? -xhtml1/nav-up-003.xht ? -html4/nav-up-004.htm ? -xhtml1/nav-up-004.xht ? -html4/nav-up-005.htm ? -xhtml1/nav-up-005.xht ? -html4/nav-up-006.htm ? -xhtml1/nav-up-006.xht ? -html4/nav-up-007.htm ? -xhtml1/nav-up-007.xht ? -html4/nav-up-008.htm ? -xhtml1/nav-up-008.xht ? -html4/nav-up-009.htm ? -xhtml1/nav-up-009.xht ? -html4/nav-up-010.htm ? -xhtml1/nav-up-010.xht ? -html4/nav-up-011.htm ? -xhtml1/nav-up-011.xht ? -html4/nav-up-012.htm ? -xhtml1/nav-up-012.xht ? -html4/nav-up-013.htm ? -xhtml1/nav-up-013.xht ? -html4/nav-up-014.htm ? -xhtml1/nav-up-014.xht ? -html4/nav-up-015.htm ? -xhtml1/nav-up-015.xht ? -html4/nav-up-016.htm ? -xhtml1/nav-up-016.xht ? -html4/outline-001.htm ? -xhtml1/outline-001.xht ? -html4/outline-002.htm ? -xhtml1/outline-002.xht ? -html4/outline-color-001.htm ? -xhtml1/outline-color-001.xht ? -html4/outline-offset-001.htm ? -xhtml1/outline-offset-001.xht ? -html4/outline-offset.htm ? -xhtml1/outline-offset.xht ? -html4/outline-style-001.htm ? -xhtml1/outline-style-001.xht ? -html4/outline-style-002.htm ? -xhtml1/outline-style-002.xht ? -html4/outline-style-003.htm ? -xhtml1/outline-style-003.xht ? -html4/outline-style-004.htm ? -xhtml1/outline-style-004.xht ? -html4/resize-001.htm ? -xhtml1/resize-001.xht ? -html4/resize-002.htm ? -xhtml1/resize-002.xht ? -html4/resize-003.htm ? -xhtml1/resize-003.xht ? -html4/resize-004.htm ? -xhtml1/resize-004.xht ? -html4/resize-005.htm ? -xhtml1/resize-005.xht ? -html4/resize-006.htm ? -xhtml1/resize-006.xht ? -html4/resize-007.htm ? -xhtml1/resize-007.xht ? -html4/text-overflow-001.htm ? -xhtml1/text-overflow-001.xht ? -html4/text-overflow-002.htm ? -xhtml1/text-overflow-002.xht ? -html4/text-overflow-003.htm ? -xhtml1/text-overflow-003.xht ? -html4/text-overflow-004.htm ? -xhtml1/text-overflow-004.xht ? +testname revision result comment +html/box-sizing-border-box-001.htm c5cdf6d1b6cfbc79d283a1dec5d2c2caade1c2cd ? +xhtml1/box-sizing-border-box-001.xht c5cdf6d1b6cfbc79d283a1dec5d2c2caade1c2cd ? +html/box-sizing-border-box-002.htm 788dd3b8575e389acd8b5cc169c5b28010ce96ea ? +xhtml1/box-sizing-border-box-002.xht 788dd3b8575e389acd8b5cc169c5b28010ce96ea ? +html/box-sizing-border-box-003.htm 9f7e319f985315b8aa670ad38ab1aa15f41e2c59 ? +xhtml1/box-sizing-border-box-003.xht 9f7e319f985315b8aa670ad38ab1aa15f41e2c59 ? +html/box-sizing-border-box-004.htm e0b7289fb7644222450cdfcbc3deadb9b641e904 ? +xhtml1/box-sizing-border-box-004.xht e0b7289fb7644222450cdfcbc3deadb9b641e904 ? +html/box-sizing-content-box-001.htm 3e690e79ebf0eda200bbf003d7c10c21701172b8 ? +xhtml1/box-sizing-content-box-001.xht 3e690e79ebf0eda200bbf003d7c10c21701172b8 ? +html/box-sizing-content-box-002.htm 1c2f73d2c628ae2c7fd7bfacde0225107c34865f ? +xhtml1/box-sizing-content-box-002.xht 1c2f73d2c628ae2c7fd7bfacde0225107c34865f ? +html/box-sizing-content-box-003.htm 0832ce514f23392781427aac6cff958217486bed ? +xhtml1/box-sizing-content-box-003.xht 0832ce514f23392781427aac6cff958217486bed ? +html/box-sizing-replaced-001.htm 883da133947f490fd29a3c971a3fbe405c45b762 ? +xhtml1/box-sizing-replaced-001.xht 883da133947f490fd29a3c971a3fbe405c45b762 ? +html/box-sizing-replaced-002.htm 52a88f82acf6e1a04762ca1c461f0371a117b1b0 ? +xhtml1/box-sizing-replaced-002.xht 52a88f82acf6e1a04762ca1c461f0371a117b1b0 ? +html/box-sizing-replaced-003.htm b430f0b75fc9343f8a7b2063b91a10eb9bef9dcc ? +xhtml1/box-sizing-replaced-003.xht b430f0b75fc9343f8a7b2063b91a10eb9bef9dcc ? +html/caret-color-001.htm d51a15636bbc1a93132d4dba71ff6de6c08c1c1f ? +xhtml1/caret-color-001.xht d51a15636bbc1a93132d4dba71ff6de6c08c1c1f ? +html/caret-color-002.htm 02a3dcc0a7054487ffd77b21aa525a3e8cad0dfc ? +xhtml1/caret-color-002.xht 02a3dcc0a7054487ffd77b21aa525a3e8cad0dfc ? +html/caret-color-003.htm 2b11748c87a4cb16a19ef484bd474e26faf5aac5 ? +xhtml1/caret-color-003.xht 2b11748c87a4cb16a19ef484bd474e26faf5aac5 ? +html/cursor-image-001.htm ac149272810d88c6b4e74c8dd25d81706c52d6b1 ? +xhtml1/cursor-image-001.xht ac149272810d88c6b4e74c8dd25d81706c52d6b1 ? +html/cursor-image-002.htm 8321e4c2713a5e849ff54de3fbae6b9ce786d50e ? +xhtml1/cursor-image-002.xht 8321e4c2713a5e849ff54de3fbae6b9ce786d50e ? +html/cursor-image-003.htm b3cb150cd9516a4e76a961603c0ba53637067e15 ? +xhtml1/cursor-image-003.xht b3cb150cd9516a4e76a961603c0ba53637067e15 ? +html/cursor-image-004.htm 9a6576e141da762fbfce0fe4f61bcc0623892c2d ? +xhtml1/cursor-image-004.xht 9a6576e141da762fbfce0fe4f61bcc0623892c2d ? +html/cursor-image-005-nfs.htm 4f1a9985c6fef5ff09d3249a54ea134fee4eee3a ? +xhtml1/cursor-image-005-nfs.xht 4f1a9985c6fef5ff09d3249a54ea134fee4eee3a ? +html/cursor-image-005.htm c09be6709cf1a03d7f67fc7ecfb40c0024e1f0a3 ? +xhtml1/cursor-image-005.xht c09be6709cf1a03d7f67fc7ecfb40c0024e1f0a3 ? +html/cursor-image-006.htm ff146233025e7233e3743b540db8c0c4ae656678 ? +xhtml1/cursor-image-006.xht ff146233025e7233e3743b540db8c0c4ae656678 ? +html/cursor-image-007.htm 66cd3536d1c2ee3702c8ae57aedbd87f004c9363 ? +xhtml1/cursor-image-007.xht 66cd3536d1c2ee3702c8ae57aedbd87f004c9363 ? +html/cursor-image-008.htm ff130e26926a7595d398c68812f5396464b0ff19 ? +xhtml1/cursor-image-008.xht ff130e26926a7595d398c68812f5396464b0ff19 ? +html/cursor-image-009.htm 02f94fcd8e0cc634ec7f3afbee15b87a5bdf0bf3 ? +xhtml1/cursor-image-009.xht 02f94fcd8e0cc634ec7f3afbee15b87a5bdf0bf3 ? +html/cursor-image-010.htm 77de9c216288fd659ca28b3859a01c0f507b040d ? +xhtml1/cursor-image-010.xht 77de9c216288fd659ca28b3859a01c0f507b040d ? +html/cursor-image-011.htm 7eb7c6110691d9c9bef49aabcf5d4ed16923a19f ? +xhtml1/cursor-image-011.xht 7eb7c6110691d9c9bef49aabcf5d4ed16923a19f ? +html/cursor-image-012.htm de6661cfb1df3b37673293411ddb52b1f2395a00 ? +xhtml1/cursor-image-012.xht de6661cfb1df3b37673293411ddb52b1f2395a00 ? +html/cursor-image-png-001.htm b5bc2a59bfd0c93baf67c1fb30ac712fb9394222 ? +xhtml1/cursor-image-png-001.xht b5bc2a59bfd0c93baf67c1fb30ac712fb9394222 ? +html/cursor-image-png-002.htm 5b5dfece40787d9f06da2ce1087504d350eaa537 ? +xhtml1/cursor-image-png-002.xht 5b5dfece40787d9f06da2ce1087504d350eaa537 ? +html/cursor-image-png-003.htm 01bd2fbf086a3cf67143eee844230879f9c085ef ? +xhtml1/cursor-image-png-003.xht 01bd2fbf086a3cf67143eee844230879f9c085ef ? +html/cursor-image-png-004.htm 8b222bc7696955e1dcd18ba3c042884cb1d59edd ? +xhtml1/cursor-image-png-004.xht 8b222bc7696955e1dcd18ba3c042884cb1d59edd ? +html/cursor-image-png-005.htm b347b502326dd63d2601cf6b54d45011610575c9 ? +xhtml1/cursor-image-png-005.xht b347b502326dd63d2601cf6b54d45011610575c9 ? +html/cursor-image-png-006.htm fe9f9823ce899eaec72561474abdc2f8d4acfcbb ? +xhtml1/cursor-image-png-006.xht fe9f9823ce899eaec72561474abdc2f8d4acfcbb ? +html/cursor-image-png-007.htm 23d1a63d2157b7a1cd64745dc48066020e4e21f0 ? +xhtml1/cursor-image-png-007.xht 23d1a63d2157b7a1cd64745dc48066020e4e21f0 ? +html/cursor-image-png-008.htm a36ca2472698ec7a36c566b04444deb3ca04a73a ? +xhtml1/cursor-image-png-008.xht a36ca2472698ec7a36c566b04444deb3ca04a73a ? +html/cursor-image-png-009.htm 0b8c415cd1c20ed5e0b9ab3c01f1db4f6d0d1b14 ? +xhtml1/cursor-image-png-009.xht 0b8c415cd1c20ed5e0b9ab3c01f1db4f6d0d1b14 ? +html/cursor-image-png-010.htm ca023b2abac983c730334b9dc699dac5f6d9f626 ? +xhtml1/cursor-image-png-010.xht ca023b2abac983c730334b9dc699dac5f6d9f626 ? +html/cursor-image-png-011.htm c756c2ea836ee9419caefe86a7f371cc0e99c772 ? +xhtml1/cursor-image-png-011.xht c756c2ea836ee9419caefe86a7f371cc0e99c772 ? +html/cursor-image-png-012.htm e404a23a9b5fc822d18f71d981f8c73a516fd377 ? +xhtml1/cursor-image-png-012.xht e404a23a9b5fc822d18f71d981f8c73a516fd377 ? +html/cursor-image-png-013.htm df091bc3f3369ab675592f90f667b01c5bb4aa92 ? +xhtml1/cursor-image-png-013.xht df091bc3f3369ab675592f90f667b01c5bb4aa92 ? +html/cursor-image-png-014.htm 2288b54c1a498ff37ee9369a821f3cecee97696a ? +xhtml1/cursor-image-png-014.xht 2288b54c1a498ff37ee9369a821f3cecee97696a ? +html/cursor-image-png-015.htm 84c82d6197d7d1fb9500d0a1a9f769dfa79a9165 ? +xhtml1/cursor-image-png-015.xht 84c82d6197d7d1fb9500d0a1a9f769dfa79a9165 ? +html/cursor-image-png-016.htm 4640d0c0479eaec968189b04860f82ac098b1e44 ? +xhtml1/cursor-image-png-016.xht 4640d0c0479eaec968189b04860f82ac098b1e44 ? +html/cursor-image-png-017.htm 5d30a0a5cc0d4d6f0d03e22abb67724a72006e27 ? +xhtml1/cursor-image-png-017.xht 5d30a0a5cc0d4d6f0d03e22abb67724a72006e27 ? +html/cursor-image-png-018.htm 3ae61572cc66f9cc91b5306be49561ca89e96813 ? +xhtml1/cursor-image-png-018.xht 3ae61572cc66f9cc91b5306be49561ca89e96813 ? +html/cursor-image-png-019.htm 08ee842df85fe93f89302ffdee79f4730e5b1ee7 ? +xhtml1/cursor-image-png-019.xht 08ee842df85fe93f89302ffdee79f4730e5b1ee7 ? +html/cursor-image-png-020.htm 5f6cc753e134f8f801d9daec7a1bc6b89dc86d12 ? +xhtml1/cursor-image-png-020.xht 5f6cc753e134f8f801d9daec7a1bc6b89dc86d12 ? +html/cursor-image-png-021.htm 5ef1463f50f6804b56ef93db770506868aa4119f ? +xhtml1/cursor-image-png-021.xht 5ef1463f50f6804b56ef93db770506868aa4119f ? +html/cursor-image-png-022.htm 83fae04df969bfebb151b0eaea76f032061a2d82 ? +xhtml1/cursor-image-png-022.xht 83fae04df969bfebb151b0eaea76f032061a2d82 ? +html/cursor-image-png-023.htm a7045311c6544579290a8612f271a197489653d5 ? +xhtml1/cursor-image-png-023.xht a7045311c6544579290a8612f271a197489653d5 ? +html/cursor-image-png-024.htm 8fee5e4927c500f45af3b0e4e3301d488714bd53 ? +xhtml1/cursor-image-png-024.xht 8fee5e4927c500f45af3b0e4e3301d488714bd53 ? +html/cursor-image-png-025.htm f734b1faf923a3c71348d169e7f139eaf1bf9262 ? +xhtml1/cursor-image-png-025.xht f734b1faf923a3c71348d169e7f139eaf1bf9262 ? +html/cursor-image-png-026.htm 6dd7fcea2820ad4394a5665bebf5a580f2f9da55 ? +xhtml1/cursor-image-png-026.xht 6dd7fcea2820ad4394a5665bebf5a580f2f9da55 ? +html/cursor-image-png-027.htm c65f4109041818de0146887c6ab2a49622fa0152 ? +xhtml1/cursor-image-png-027.xht c65f4109041818de0146887c6ab2a49622fa0152 ? +html/cursor-image-png-028.htm 694fe3bfa4321781d34065fd46479b82207345aa ? +xhtml1/cursor-image-png-028.xht 694fe3bfa4321781d34065fd46479b82207345aa ? +html/cursor-image-png-029.htm 63090eefb16970058b5a50122d18e70522d65fe3 ? +xhtml1/cursor-image-png-029.xht 63090eefb16970058b5a50122d18e70522d65fe3 ? +html/cursor-image-png-030.htm ced46bcfa5dec1fc7c013c580d455e6a7e7479fb ? +xhtml1/cursor-image-png-030.xht ced46bcfa5dec1fc7c013c580d455e6a7e7479fb ? +html/cursor-image-png-031.htm 2870fd8984f174ee8d28eee9e1c995d2e69ad4cf ? +xhtml1/cursor-image-png-031.xht 2870fd8984f174ee8d28eee9e1c995d2e69ad4cf ? +html/cursor-image-png-032.htm 21019cf7c5af37397df51de16c1a72d62eb0033e ? +xhtml1/cursor-image-png-032.xht 21019cf7c5af37397df51de16c1a72d62eb0033e ? +html/cursor-image-png-033.htm bba2826a9efa0e29d6d81a0b48862361c0b74482 ? +xhtml1/cursor-image-png-033.xht bba2826a9efa0e29d6d81a0b48862361c0b74482 ? +html/cursor-image-png-034.htm bba2826a9efa0e29d6d81a0b48862361c0b74482 ? +xhtml1/cursor-image-png-034.xht bba2826a9efa0e29d6d81a0b48862361c0b74482 ? +html/cursor-image-png-035.htm 421bd3cbcf5a8966dbade722813f77fcec230697 ? +xhtml1/cursor-image-png-035.xht 421bd3cbcf5a8966dbade722813f77fcec230697 ? +html/cursor-image-png-036.htm 3c4f15fca711a53c48e368922d20f640beb68491 ? +xhtml1/cursor-image-png-036.xht 3c4f15fca711a53c48e368922d20f640beb68491 ? +html/cursor-image-png-037.htm 94b79cf317bb7ee58feed34ddf4ec0c915a30578 ? +xhtml1/cursor-image-png-037.xht 94b79cf317bb7ee58feed34ddf4ec0c915a30578 ? +html/cursor-image-png-038.htm 8a01bae658305621cc9ac2b856a12d7c8e829a7c ? +xhtml1/cursor-image-png-038.xht 8a01bae658305621cc9ac2b856a12d7c8e829a7c ? +html/cursor-image-png-039.htm 40effb50eb6bde61d4e27df67dc9e2523ecaf57d ? +xhtml1/cursor-image-png-039.xht 40effb50eb6bde61d4e27df67dc9e2523ecaf57d ? +html/cursor-image-png-040.htm 80f4ebaf645b3eb21b702a26c643f4acf87f56b4 ? +xhtml1/cursor-image-png-040.xht 80f4ebaf645b3eb21b702a26c643f4acf87f56b4 ? +html/cursor-image-png-041.htm d016a75f2c4dafc4afe2e819019a890a190c30d2 ? +xhtml1/cursor-image-png-041.xht d016a75f2c4dafc4afe2e819019a890a190c30d2 ? +html/cursor-image-png-042.htm b934e7afd271362d3f645f8c50767375bb12304d ? +xhtml1/cursor-image-png-042.xht b934e7afd271362d3f645f8c50767375bb12304d ? +html/cursor-image-png-043.htm d99cbd3fb2e65759ef2041c792ca890af5ef44ef ? +xhtml1/cursor-image-png-043.xht d99cbd3fb2e65759ef2041c792ca890af5ef44ef ? +html/nav-dir-001.htm 53627af1825c864f63a4dfce3fd1bc54c2d706ff ? +xhtml1/nav-dir-001.xht 53627af1825c864f63a4dfce3fd1bc54c2d706ff ? +html/nav-dir-002.htm df42b83ea088dc45e092addfa1351e0ca935e2d4 ? +xhtml1/nav-dir-002.xht df42b83ea088dc45e092addfa1351e0ca935e2d4 ? +html/nav-dir-003.htm b5f51eda8ed971e794e4f50633ea18e014e539e6 ? +xhtml1/nav-dir-003.xht b5f51eda8ed971e794e4f50633ea18e014e539e6 ? +html/nav-dir-004.htm ff374aa043d586c90cb2f582b5c21f529f17f4d8 ? +xhtml1/nav-dir-004.xht ff374aa043d586c90cb2f582b5c21f529f17f4d8 ? +html/nav-dir-005.htm f0cc038b2b170db6e6faed56e76c62773fc939a3 ? +xhtml1/nav-dir-005.xht f0cc038b2b170db6e6faed56e76c62773fc939a3 ? +html/nav-dir-missing-1.htm 23e4724d74954bc0ccfc48eadd29c6ceba856165 ? +xhtml1/nav-dir-missing-1.xht 23e4724d74954bc0ccfc48eadd29c6ceba856165 ? +html/nav-dir-missing-2.htm aeafaf1a2c45fe6fab26ccd0d14d8f1996bd874b ? +xhtml1/nav-dir-missing-2.xht aeafaf1a2c45fe6fab26ccd0d14d8f1996bd874b ? +html/nav-dir-missing-3.htm 7a7606e9c69252a3d65dcc86c8ad177351b44c07 ? +xhtml1/nav-dir-missing-3.xht 7a7606e9c69252a3d65dcc86c8ad177351b44c07 ? +html/nav-dir-missing-4.htm 8f490504f42544788898e31a620c613627ffafb5 ? +xhtml1/nav-dir-missing-4.xht 8f490504f42544788898e31a620c613627ffafb5 ? +html/nav-dir-target-001.htm 93cfe1cda155ea8d4ba50ee2b2accf01e19164cb ? +xhtml1/nav-dir-target-001.xht 93cfe1cda155ea8d4ba50ee2b2accf01e19164cb ? +html/nav-dir-target-002.htm 6f1c8ff0bfeadf4d48a043568c673a90ee382a25 ? +xhtml1/nav-dir-target-002.xht 6f1c8ff0bfeadf4d48a043568c673a90ee382a25 ? +html/nav-dir-target-003.htm 14aa923cccd163d6c5e9e29f39656df8d276303f ? +xhtml1/nav-dir-target-003.xht 14aa923cccd163d6c5e9e29f39656df8d276303f ? +html/nav-dir-target-004.htm f7ca330d3b4955297ffca4ad18f8df6fce0f744b ? +xhtml1/nav-dir-target-004.xht f7ca330d3b4955297ffca4ad18f8df6fce0f744b ? +html/nav-dir-target-005.htm 0df966d33c18f755e9ef7d6409651891bb910a05 ? +xhtml1/nav-dir-target-005.xht 0df966d33c18f755e9ef7d6409651891bb910a05 ? +html/nav-dir-target-006.htm c48622f5f6dcb5d2043df03d6d1982b11a49745e ? +xhtml1/nav-dir-target-006.xht c48622f5f6dcb5d2043df03d6d1982b11a49745e ? +html/nav-down-000.htm efb5973f8c117eccab25b4fec3652501c8f47b5f ? +xhtml1/nav-down-000.xht efb5973f8c117eccab25b4fec3652501c8f47b5f ? +html/nav-down-001.htm db6f684fdbb69ef509212fd9aa200ebc67c123b4 ? +xhtml1/nav-down-001.xht db6f684fdbb69ef509212fd9aa200ebc67c123b4 ? +html/nav-down-002.htm 10ee83bfd73d6c50ea4e9f8939c0daa1c6b5c527 ? +xhtml1/nav-down-002.xht 10ee83bfd73d6c50ea4e9f8939c0daa1c6b5c527 ? +html/nav-down-003.htm b3c7fde31f33f19ec027c140a01b545cb4588d5a ? +xhtml1/nav-down-003.xht b3c7fde31f33f19ec027c140a01b545cb4588d5a ? +html/nav-down-004.htm 2cea50d3e94c8e22669122469edeeb81914169c6 ? +xhtml1/nav-down-004.xht 2cea50d3e94c8e22669122469edeeb81914169c6 ? +html/nav-down-005.htm 1e72d1878fb97c520895aa936cff2c5790b98044 ? +xhtml1/nav-down-005.xht 1e72d1878fb97c520895aa936cff2c5790b98044 ? +html/nav-down-006.htm 4c73a89f5a7b23fe72f3ccdfd904ce3614c4aeb7 ? +xhtml1/nav-down-006.xht 4c73a89f5a7b23fe72f3ccdfd904ce3614c4aeb7 ? +html/nav-down-007.htm 55f6a898664e95772e7dca4e22aa8ebe3bd6374c ? +xhtml1/nav-down-007.xht 55f6a898664e95772e7dca4e22aa8ebe3bd6374c ? +html/nav-down-008.htm 534a01aad52d9fd810c9920d10121ec8c726f140 ? +xhtml1/nav-down-008.xht 534a01aad52d9fd810c9920d10121ec8c726f140 ? +html/nav-down-009.htm 7ed44f6f55a12bcc1e21e7c3a33020de6e490cae ? +xhtml1/nav-down-009.xht 7ed44f6f55a12bcc1e21e7c3a33020de6e490cae ? +html/nav-down-010.htm 74523135a3141aae63a4da6235d81a99d736048e ? +xhtml1/nav-down-010.xht 74523135a3141aae63a4da6235d81a99d736048e ? +html/nav-down-011.htm 23323e8de87aed1c7e4134b5e8c547bfaafc320b ? +xhtml1/nav-down-011.xht 23323e8de87aed1c7e4134b5e8c547bfaafc320b ? +html/nav-down-012.htm a078de97fc6d45b2ac1971fcca41a7c85ac58b2b ? +xhtml1/nav-down-012.xht a078de97fc6d45b2ac1971fcca41a7c85ac58b2b ? +html/nav-down-013.htm 4363166b7f17b00d22ecdc5e0a87555b4c650ae8 ? +xhtml1/nav-down-013.xht 4363166b7f17b00d22ecdc5e0a87555b4c650ae8 ? +html/nav-down-014.htm 6e93be4ac07a926a21e70ba71ac4bcad00ae62b6 ? +xhtml1/nav-down-014.xht 6e93be4ac07a926a21e70ba71ac4bcad00ae62b6 ? +html/nav-down-015.htm cbbef26bfc60d36c1124604f1755cd9c1e1e61a5 ? +xhtml1/nav-down-015.xht cbbef26bfc60d36c1124604f1755cd9c1e1e61a5 ? +html/nav-down-016.htm 50ac66e1a2bcb7668b7301646cae4aee2a5902c8 ? +xhtml1/nav-down-016.xht 50ac66e1a2bcb7668b7301646cae4aee2a5902c8 ? +html/nav-left-000.htm 3740459bb1fbba471a9fccc702cf7c5a0b4e4a70 ? +xhtml1/nav-left-000.xht 3740459bb1fbba471a9fccc702cf7c5a0b4e4a70 ? +html/nav-left-001.htm aba511f4d39497374d3ac6d9e7065b3c0066ddb8 ? +xhtml1/nav-left-001.xht aba511f4d39497374d3ac6d9e7065b3c0066ddb8 ? +html/nav-left-002.htm 312c212c2ebd7451c53ea40ae1cce9bd0bc71df2 ? +xhtml1/nav-left-002.xht 312c212c2ebd7451c53ea40ae1cce9bd0bc71df2 ? +html/nav-left-003.htm 5def6359f9f01cd9083be904d8fdbc5cddd20c43 ? +xhtml1/nav-left-003.xht 5def6359f9f01cd9083be904d8fdbc5cddd20c43 ? +html/nav-left-004.htm 54ec2d433bd0a7e6a38a423a0d5add8b36f36ec0 ? +xhtml1/nav-left-004.xht 54ec2d433bd0a7e6a38a423a0d5add8b36f36ec0 ? +html/nav-left-005.htm 81355e143aca3718acb50feba6b7edc381d94322 ? +xhtml1/nav-left-005.xht 81355e143aca3718acb50feba6b7edc381d94322 ? +html/nav-left-006.htm fa471649ab325ab18fc2274247de982ac3891998 ? +xhtml1/nav-left-006.xht fa471649ab325ab18fc2274247de982ac3891998 ? +html/nav-left-007.htm ceec9ef8ba3829b39356560057cd32dcfdd91cd5 ? +xhtml1/nav-left-007.xht ceec9ef8ba3829b39356560057cd32dcfdd91cd5 ? +html/nav-left-008.htm 0d69bb3acc976b7bcd686fcb95710353d8f34bd6 ? +xhtml1/nav-left-008.xht 0d69bb3acc976b7bcd686fcb95710353d8f34bd6 ? +html/nav-left-009.htm 1b09514624892ff4bf17aa3f664ca866295f99dd ? +xhtml1/nav-left-009.xht 1b09514624892ff4bf17aa3f664ca866295f99dd ? +html/nav-left-010.htm 9d89bbebd5ef2b175ac1d10309fc4849b0b819bd ? +xhtml1/nav-left-010.xht 9d89bbebd5ef2b175ac1d10309fc4849b0b819bd ? +html/nav-left-011.htm 63fa92462d6c31b78dcb10e3acc698e6489cad16 ? +xhtml1/nav-left-011.xht 63fa92462d6c31b78dcb10e3acc698e6489cad16 ? +html/nav-left-012.htm a612bf3e216229b6eb59bdef3ac57f0fa90d3fca ? +xhtml1/nav-left-012.xht a612bf3e216229b6eb59bdef3ac57f0fa90d3fca ? +html/nav-left-013.htm aef75b9466aa9b0058af70c276656623b1bdecb1 ? +xhtml1/nav-left-013.xht aef75b9466aa9b0058af70c276656623b1bdecb1 ? +html/nav-left-014.htm 6ea2e1974935eccd840e0fa79673422705f8d1b4 ? +xhtml1/nav-left-014.xht 6ea2e1974935eccd840e0fa79673422705f8d1b4 ? +html/nav-left-015.htm cc4e55b5d897546f9c5ffdd963323fab6b92239a ? +xhtml1/nav-left-015.xht cc4e55b5d897546f9c5ffdd963323fab6b92239a ? +html/nav-left-016.htm 38fe3bf8be166903c572cfc9d487125d06fcdd03 ? +xhtml1/nav-left-016.xht 38fe3bf8be166903c572cfc9d487125d06fcdd03 ? +html/nav-right-000.htm 3d6097a31b4ad3ab8bd0ba1a5572680ff42bd836 ? +xhtml1/nav-right-000.xht 3d6097a31b4ad3ab8bd0ba1a5572680ff42bd836 ? +html/nav-right-001.htm 393f9a5d4e702b6d3f6795544ecb0ffe7ec70c07 ? +xhtml1/nav-right-001.xht 393f9a5d4e702b6d3f6795544ecb0ffe7ec70c07 ? +html/nav-right-002.htm 2ce827fffd6b34fb8b5f38929d60346b673f1624 ? +xhtml1/nav-right-002.xht 2ce827fffd6b34fb8b5f38929d60346b673f1624 ? +html/nav-right-003.htm 61c1056a5ea2c2fe8dc7026d1defc0ad13426cbe ? +xhtml1/nav-right-003.xht 61c1056a5ea2c2fe8dc7026d1defc0ad13426cbe ? +html/nav-right-004.htm 039471b8401ec982fbeac16f0bb3720564479fe3 ? +xhtml1/nav-right-004.xht 039471b8401ec982fbeac16f0bb3720564479fe3 ? +html/nav-right-005.htm 85579284e089069ca5161b973915f514297d9680 ? +xhtml1/nav-right-005.xht 85579284e089069ca5161b973915f514297d9680 ? +html/nav-right-006.htm bf551b7b3a9d84a93ed2edc4f6e190edd7cd3c8a ? +xhtml1/nav-right-006.xht bf551b7b3a9d84a93ed2edc4f6e190edd7cd3c8a ? +html/nav-right-007.htm 9f3001bf2e9d4fa199885454c1a936f835dd5d3d ? +xhtml1/nav-right-007.xht 9f3001bf2e9d4fa199885454c1a936f835dd5d3d ? +html/nav-right-008.htm ce7c2f56d08b8a8078b95b9283fca950171e6800 ? +xhtml1/nav-right-008.xht ce7c2f56d08b8a8078b95b9283fca950171e6800 ? +html/nav-right-009.htm 735d9be30a2018f6b0bb939d7cca8610e1a0e6d8 ? +xhtml1/nav-right-009.xht 735d9be30a2018f6b0bb939d7cca8610e1a0e6d8 ? +html/nav-right-010.htm 17855eabad8e4ebf63876d4e5dfd159a1b07d000 ? +xhtml1/nav-right-010.xht 17855eabad8e4ebf63876d4e5dfd159a1b07d000 ? +html/nav-right-011.htm 96abd1f9e6398ed3434b94527b901f07ae79a498 ? +xhtml1/nav-right-011.xht 96abd1f9e6398ed3434b94527b901f07ae79a498 ? +html/nav-right-012.htm 7f38d9b4923859f53f9bb52546b02bee02b070f5 ? +xhtml1/nav-right-012.xht 7f38d9b4923859f53f9bb52546b02bee02b070f5 ? +html/nav-right-013.htm 2cb8dd83a8fce010ef4e770f22c4f19c6cfd9f65 ? +xhtml1/nav-right-013.xht 2cb8dd83a8fce010ef4e770f22c4f19c6cfd9f65 ? +html/nav-right-014.htm 76baae78cbfc6057fdfbc4af924839e38236fe24 ? +xhtml1/nav-right-014.xht 76baae78cbfc6057fdfbc4af924839e38236fe24 ? +html/nav-right-015.htm 4cc4bfec2397714277a094c65bcfdd9e1a879190 ? +xhtml1/nav-right-015.xht 4cc4bfec2397714277a094c65bcfdd9e1a879190 ? +html/nav-right-016.htm 82069b286f3194a1f443b799ef1a98313f423947 ? +xhtml1/nav-right-016.xht 82069b286f3194a1f443b799ef1a98313f423947 ? +html/nav-up-000.htm f116330faf1ce4277504df85e8615a38d812fdb4 ? +xhtml1/nav-up-000.xht f116330faf1ce4277504df85e8615a38d812fdb4 ? +html/nav-up-001.htm c417ed84bf20e76a0a0870531c9285df0470dc3d ? +xhtml1/nav-up-001.xht c417ed84bf20e76a0a0870531c9285df0470dc3d ? +html/nav-up-002.htm 1862193d682f8bb7e2fd3e7cb2357ab02c7eee39 ? +xhtml1/nav-up-002.xht 1862193d682f8bb7e2fd3e7cb2357ab02c7eee39 ? +html/nav-up-003.htm d6cab19b9ab89e53d77113a3c68c1b482a7f89eb ? +xhtml1/nav-up-003.xht d6cab19b9ab89e53d77113a3c68c1b482a7f89eb ? +html/nav-up-004.htm 55bc517d310f659992cc965ff2ee3fcc2dc90998 ? +xhtml1/nav-up-004.xht 55bc517d310f659992cc965ff2ee3fcc2dc90998 ? +html/nav-up-005.htm f2e5d567d80810708aee7bc752d05c79c39173d2 ? +xhtml1/nav-up-005.xht f2e5d567d80810708aee7bc752d05c79c39173d2 ? +html/nav-up-006.htm 2829464c3c789de7becc51acd4671484049f7998 ? +xhtml1/nav-up-006.xht 2829464c3c789de7becc51acd4671484049f7998 ? +html/nav-up-007.htm 44a11b56eedd13d978e2882c233756caf91904ef ? +xhtml1/nav-up-007.xht 44a11b56eedd13d978e2882c233756caf91904ef ? +html/nav-up-008.htm 06f0c76878a908f0c47c7765e236d3b72ea08952 ? +xhtml1/nav-up-008.xht 06f0c76878a908f0c47c7765e236d3b72ea08952 ? +html/nav-up-009.htm 7eadfd3077ed25c92d5dc8764519a9366695f08c ? +xhtml1/nav-up-009.xht 7eadfd3077ed25c92d5dc8764519a9366695f08c ? +html/nav-up-010.htm 9fe7d38d907a47c642b7c71464874b472df374f0 ? +xhtml1/nav-up-010.xht 9fe7d38d907a47c642b7c71464874b472df374f0 ? +html/nav-up-011.htm 1bfe4ea6c2783b872963699e16f095d6c243fc04 ? +xhtml1/nav-up-011.xht 1bfe4ea6c2783b872963699e16f095d6c243fc04 ? +html/nav-up-012.htm 89618e1ee56b83c112420e66348aaf47dae330df ? +xhtml1/nav-up-012.xht 89618e1ee56b83c112420e66348aaf47dae330df ? +html/nav-up-013.htm 4fbeadebda75e464452f1f97b0c699bc980c26a6 ? +xhtml1/nav-up-013.xht 4fbeadebda75e464452f1f97b0c699bc980c26a6 ? +html/nav-up-014.htm e7cd09a6a13b63befb8d8c3af9028cec91b29870 ? +xhtml1/nav-up-014.xht e7cd09a6a13b63befb8d8c3af9028cec91b29870 ? +html/nav-up-015.htm 765463ea1bb826ced2f27570b8971108d9773c0d ? +xhtml1/nav-up-015.xht 765463ea1bb826ced2f27570b8971108d9773c0d ? +html/nav-up-016.htm 35f99db1c3dcd77b910b34c45a5d45502ecf3c7d ? +xhtml1/nav-up-016.xht 35f99db1c3dcd77b910b34c45a5d45502ecf3c7d ? +html/outline-001.htm 149a87304e31bf6b569360069a8f8be1d23538b8 ? +xhtml1/outline-001.xht 149a87304e31bf6b569360069a8f8be1d23538b8 ? +html/outline-002.htm 71919648c35740004dd90b4acdba5f5b98a3655c ? +xhtml1/outline-002.xht 71919648c35740004dd90b4acdba5f5b98a3655c ? +html/outline-color-001.htm a776bdc125fc5dcc83d0cfb361d9d19cc9b3eba4 ? +xhtml1/outline-color-001.xht a776bdc125fc5dcc83d0cfb361d9d19cc9b3eba4 ? +html/outline-offset-001.htm 465df8192fe5ee54660d205d9d3f271ef84c1788 ? +xhtml1/outline-offset-001.xht 465df8192fe5ee54660d205d9d3f271ef84c1788 ? +html/outline-offset.htm 21bd9169e501282f6ddc905cf0b066f9dd730e5b ? +xhtml1/outline-offset.xht 21bd9169e501282f6ddc905cf0b066f9dd730e5b ? +html/outline-style-001.htm 9b6764e372cceab67dda037ff6138d0e911b1dec ? +xhtml1/outline-style-001.xht 9b6764e372cceab67dda037ff6138d0e911b1dec ? +html/outline-style-002.htm 695fbf49c18c77abfca3e5c42c9359ab9afdf1f1 ? +xhtml1/outline-style-002.xht 695fbf49c18c77abfca3e5c42c9359ab9afdf1f1 ? +html/outline-style-003.htm c26ebdb81d867b5d1d8ff893a632b8c738c934b7 ? +xhtml1/outline-style-003.xht c26ebdb81d867b5d1d8ff893a632b8c738c934b7 ? +html/outline-style-004.htm 7027b5a477a5790afef0521288df069305856abc ? +xhtml1/outline-style-004.xht 7027b5a477a5790afef0521288df069305856abc ? +html/resize-001.htm c5ba9263cd9037be70dfbe252816bdf56d94d8d5 ? +xhtml1/resize-001.xht c5ba9263cd9037be70dfbe252816bdf56d94d8d5 ? +html/resize-002.htm 5cb1f8083e06e1cdf3a2112feea46a60f6d7d89f ? +xhtml1/resize-002.xht 5cb1f8083e06e1cdf3a2112feea46a60f6d7d89f ? +html/resize-003.htm 8fab7afb74c7eb459362f54ebdcaa0f17e7c62d8 ? +xhtml1/resize-003.xht 8fab7afb74c7eb459362f54ebdcaa0f17e7c62d8 ? +html/resize-004.htm c43d7af308513b06223d42846038c693c5bf214e ? +xhtml1/resize-004.xht c43d7af308513b06223d42846038c693c5bf214e ? +html/resize-005.htm f868c41121e13b1963ac424f41bd7709c0d77f82 ? +xhtml1/resize-005.xht f868c41121e13b1963ac424f41bd7709c0d77f82 ? +html/resize-006.htm d65e14169ca073207b43fe4145e83c831b77a067 ? +xhtml1/resize-006.xht d65e14169ca073207b43fe4145e83c831b77a067 ? +html/resize-007.htm c0e4494f6e70369f227ec265ff2c14fb29323e66 ? +xhtml1/resize-007.xht c0e4494f6e70369f227ec265ff2c14fb29323e66 ? +html/text-overflow-001.htm 18b85a5682895eec2a93d551dbe9d88d014f65b3 ? +xhtml1/text-overflow-001.xht 18b85a5682895eec2a93d551dbe9d88d014f65b3 ? +html/text-overflow-002.htm 9f4f4eae59abbf039c8743708235481c12751585 ? +xhtml1/text-overflow-002.xht 9f4f4eae59abbf039c8743708235481c12751585 ? +html/text-overflow-003.htm dac3b5119c015760b3e5eb87122680eca10725c0 ? +xhtml1/text-overflow-003.xht dac3b5119c015760b3e5eb87122680eca10725c0 ? +html/text-overflow-004.htm 5b424a1f63abc03cd51ca922704756c93961d2eb ? +xhtml1/text-overflow-004.xht 5b424a1f63abc03cd51ca922704756c93961d2eb ? diff --git a/tests/wpt/css-tests/css-ui-3_dev/index.htm b/tests/wpt/css-tests/css-ui-3_dev/index.htm index 70c20a655a8..2055f007c9e 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/index.htm +++ b/tests/wpt/css-tests/css-ui-3_dev/index.htm @@ -134,6 +134,7 @@ <li>Chris Lilley</li> <li>Daniel Glazman</li> <li>Elika J. Etemad</li> + <li>Florian Rivoal</li> <li>Intel</li> <li>Jorrit Vermeiren</li> <li>jy-jeung</li> diff --git a/tests/wpt/css-tests/css-ui-3_dev/index.xht b/tests/wpt/css-tests/css-ui-3_dev/index.xht index 1ba34066740..e153b7338c3 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/index.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/index.xht @@ -134,6 +134,7 @@ <li>Chris Lilley</li> <li>Daniel Glazman</li> <li>Elika J. Etemad</li> + <li>Florian Rivoal</li> <li>Intel</li> <li>Jorrit Vermeiren</li> <li>jy-jeung</li> diff --git a/tests/wpt/css-tests/css-ui-3_dev/testinfo.data b/tests/wpt/css-tests/css-ui-3_dev/testinfo.data index 268bf5be8e3..c1370493e40 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/testinfo.data +++ b/tests/wpt/css-tests/css-ui-3_dev/testinfo.data @@ -6,28 +6,25 @@ box-sizing-border-box-004 Box Sizing - Border-Box with min/max width/height ht box-sizing-content-box-001 Box Sizing - Content-Box with specified width/height http://www.w3.org/TR/css3-ui/#box-sizing 3e690e79ebf0eda200bbf003d7c10c21701172b8 `Scott Johnson`<mailto:sjohnson@mozilla.com> box-sizing: content-box should make the element's (percentage) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge. box-sizing-content-box-002 Box Sizing - Content-Box with specified width/height http://www.w3.org/TR/css3-ui/#box-sizing 1c2f73d2c628ae2c7fd7bfacde0225107c34865f `Scott Johnson`<mailto:sjohnson@mozilla.com> box-sizing: content-box should make the element's (calc) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge. box-sizing-content-box-003 Box Sizing - Content-Box with min/max width/height http://www.w3.org/TR/css3-ui/#box-sizing 0832ce514f23392781427aac6cff958217486bed `Scott Johnson`<mailto:sjohnson@mozilla.com> box-sizing: content-box should make the element's (percentage) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge. -box-sizing-padding-box-001 Box Sizing - Padding-Box with specified width/height http://www.w3.org/TR/css3-ui/#box-sizing 12c2751a095a1e726b9d53487b3835ab26ab4974 `Scott Johnson`<mailto:sjohnson@mozilla.com> box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge. -box-sizing-padding-box-002 Box Sizing - Padding-Box with specified width/height http://www.w3.org/TR/css3-ui/#box-sizing f71295b347b6fa68fab375585a9a283583147f4b `Scott Johnson`<mailto:sjohnson@mozilla.com> box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge. -box-sizing-padding-box-003 Box Sizing - Padding-Box with min/max width/height http://www.w3.org/TR/css3-ui/#box-sizing e2e2f7ded834c67b96c97c897861936773f049ed `Scott Johnson`<mailto:sjohnson@mozilla.com> box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge. -box-sizing-replaced-001 Min/Max Height and Width Constraints on Replaced Elements with Box-Sizing image http://www.w3.org/TR/css3-ui/#box-sizing 60b0fe86a583c19b5172235055a5bdda2a06dc1b `Elika J. Etemad`<http://fantasai.inkedblade.net/contact>,`Scott Johnson`<mailto:sjohnson@mozilla.com> All images should be sized at 75px x 75px, with 5px of padding around each. +box-sizing-replaced-001 Min/Max Height and Width Constraints on Replaced Elements with Box-Sizing image http://www.w3.org/TR/css3-ui/#box-sizing 883da133947f490fd29a3c971a3fbe405c45b762 `Elika J. Etemad`<http://fantasai.inkedblade.net/contact>,`Scott Johnson`<mailto:sjohnson@mozilla.com> All images should be sized at 75px x 75px, with 5px of padding around each. box-sizing-replaced-002 Min/Max Height and Width Constraints on Replaced Elements with Box-Sizing image http://www.w3.org/TR/css3-ui/#box-sizing 52a88f82acf6e1a04762ca1c461f0371a117b1b0 `Elika J. Etemad`<http://fantasai.inkedblade.net/contact>,`Scott Johnson`<mailto:sjohnson@mozilla.com> All images should be sized at 75px x 75px, with 5px of padding and 5px of blue border around each. box-sizing-replaced-003 Min/Max Height and Width Constraints on Replaced Elements with Box-Sizing image http://www.w3.org/TR/css3-ui/#box-sizing b430f0b75fc9343f8a7b2063b91a10eb9bef9dcc `Elika J. Etemad`<http://fantasai.inkedblade.net/contact>,`Scott Johnson`<mailto:sjohnson@mozilla.com> All images should be sized at 75px x 75px. caret-color-001 caret-color http://www.w3.org/TR/css3-ui/#caret-color d51a15636bbc1a93132d4dba71ff6de6c08c1c1f `Chris Lilley`<mailto:chris@w3.org> Test checks that caret-color can be set on a textarea caret-color-002 caret-color is not inherited http://www.w3.org/TR/css3-ui/#caret-color 02a3dcc0a7054487ffd77b21aa525a3e8cad0dfc `Chris Lilley`<mailto:chris@w3.org> Test checks that caret-color value does not inherit caret-color-003 caret-color auto http://www.w3.org/TR/css3-ui/#caret-color 2b11748c87a4cb16a19ef484bd474e26faf5aac5 `Chris Lilley`<mailto:chris@w3.org> Test checks that caret-color: auto resolves to currentColor -cursor-image-001 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor 6f16165bbeb989e244d19831e4f98174784856a9 `Chris Lilley`<mailto:chris@w3.org> Test checks that a PNG image supported as a custom cursor. -cursor-image-002 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor b292dd81244427bde31d66ea9d24231bede694f2 `Chris Lilley`<mailto:chris@w3.org> Test checks that a PNG image supported as a custom cursor, loaded cross-domain with absolute url. -cursor-image-003 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor 320273d831e50e6450f3a23a6b98d77bb6093336 `Chris Lilley`<mailto:chris@w3.org> Test checks that an ICO image is supported as a custom cursor. -cursor-image-004 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor d7e91db85209d6c015a370aaf3d3ab1f78da9ce6 `Chris Lilley`<mailto:chris@w3.org> Test checks that an ICO image, with its own hotspot, is supported as a custom cursor. -cursor-image-005 Cursor property, url value image,interact,svg http://www.w3.org/TR/css3-ui/#cursor 9ffdbc0019311a544ae144726ae5b2e4c43968df `Chris Lilley`<mailto:chris@w3.org> Test checks that a fixed size SVG image is supported as a custom cursor. -cursor-image-005-nfs Cursor property, url value image,interact,svg http://www.w3.org/TR/css3-ui/#cursor,http://www.w3.org/TR/css3-images/#default-object-size f56858aab1a730a79480462b45728925a35d27d1 `Chris Lilley`<mailto:chris@w3.org> Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images. +cursor-image-001 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor ac149272810d88c6b4e74c8dd25d81706c52d6b1 `Chris Lilley`<mailto:chris@w3.org> Test checks that a PNG image supported as a custom cursor. +cursor-image-002 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor 8321e4c2713a5e849ff54de3fbae6b9ce786d50e `Chris Lilley`<mailto:chris@w3.org> Test checks that a PNG image supported as a custom cursor, loaded cross-domain with absolute url. +cursor-image-003 Cursor property, url value image,interact,may http://www.w3.org/TR/css3-ui/#cursor b3cb150cd9516a4e76a961603c0ba53637067e15 `Chris Lilley`<mailto:chris@w3.org> Test checks that an ICO image is supported as a custom cursor. +cursor-image-004 Cursor property, url value image,interact,may http://www.w3.org/TR/css3-ui/#cursor 9a6576e141da762fbfce0fe4f61bcc0623892c2d `Chris Lilley`<mailto:chris@w3.org> Test checks that an ICO image, with its own hotspot, is supported as a custom cursor. +cursor-image-005 Cursor property, url value interact,svg http://www.w3.org/TR/css3-ui/#cursor c09be6709cf1a03d7f67fc7ecfb40c0024e1f0a3 `Chris Lilley`<mailto:chris@w3.org> Test checks that a fixed size SVG image is supported as a custom cursor. +cursor-image-005-nfs Cursor property, url value interact,svg http://www.w3.org/TR/css3-ui/#cursor,http://www.w3.org/TR/css3-images/#default-object-size 4f1a9985c6fef5ff09d3249a54ea134fee4eee3a `Chris Lilley`<mailto:chris@w3.org> Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images. cursor-image-006 Cursor property, url value animated,image,interact http://www.w3.org/TR/css3-ui/#cursor ff146233025e7233e3743b540db8c0c4ae656678 `Chris Lilley`<mailto:chris@w3.org> Test checks that an ANI image, with it's own hotspot, is supported as a custom cursor. cursor-image-007 Cursor property, url value image,interact,svg http://www.w3.org/TR/css3-ui/#cursor 66cd3536d1c2ee3702c8ae57aedbd87f004c9363 `Chris Lilley`<mailto:chris@w3.org> Test checks that a compressed, fixed size SVG image is supported as a custom cursor. cursor-image-008 Cursor property, url value fallback image,interact http://www.w3.org/TR/css3-ui/#cursor ff130e26926a7595d398c68812f5396464b0ff19 `Chris Lilley`<mailto:chris@w3.org> Test checks that non-existent images cause the fallback to be used. -cursor-image-009 Cursor property, url value, no fallback image,interact,invalid http://www.w3.org/TR/css3-ui/#cursor aee833fbc0a438ef1234ccda01bee1f2456e1871 `Chris Lilley`<mailto:chris@w3.org> Test checks that a fallback cursor is required. +cursor-image-009 Cursor property, url value, no fallback image,interact,invalid http://www.w3.org/TR/css3-ui/#cursor 02f94fcd8e0cc634ec7f3afbee15b87a5bdf0bf3 `Chris Lilley`<mailto:chris@w3.org> Test checks that a fallback cursor is required. cursor-image-010 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor 77de9c216288fd659ca28b3859a01c0f507b040d `Chris Lilley`<mailto:chris@w3.org> Test checks that a GIF image is supported as a custom cursor. cursor-image-011 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor 7eb7c6110691d9c9bef49aabcf5d4ed16923a19f `Chris Lilley`<mailto:chris@w3.org> Test checks that a GIF image with transparency is supported as a custom cursor. -cursor-image-012 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor 4ffcb78af9c3a271561dd107b9f903ac0daa6967 `Chris Lilley`<mailto:chris@w3.org> Test checks that a JPEG/JFIF image is supported as a custom cursor. +cursor-image-012 Cursor property, url value image,interact http://www.w3.org/TR/css3-ui/#cursor de6661cfb1df3b37673293411ddb52b1f2395a00 `Chris Lilley`<mailto:chris@w3.org> Test checks that a JPEG/JFIF image is supported as a custom cursor. cursor-image-png-001 Cursor property, PNG image,interact http://www.w3.org/TR/css3-ui/#cursor b5bc2a59bfd0c93baf67c1fb30ac712fb9394222 `Chris Lilley`<mailto:chris@w3.org> Test checks that a monochrome (type 0) PNG image, 1 bit/pixel, is supported as a CSS custom cursor. cursor-image-png-002 Cursor property, PNG interact http://www.w3.org/TR/css3-ui/#cursor 5b5dfece40787d9f06da2ce1087504d350eaa537 `Chris Lilley`<mailto:chris@w3.org> Test checks that a black and white PNG image cursor is supported. cursor-image-png-003 Cursor property, PNG interact http://www.w3.org/TR/css3-ui/#cursor 01bd2fbf086a3cf67143eee844230879f9c085ef `Chris Lilley`<mailto:chris@w3.org> Test checks that a black and white PNG image cursor is supported. @@ -76,6 +73,10 @@ nav-dir-002 Directional Focus Navigation - 'inherit' property value interact ht nav-dir-003 Directional Focus Navigation - input elements interact http://www.w3.org/TR/css3-ui/#nav-dir b5f51eda8ed971e794e4f50633ea18e014e539e6 `Jorrit Vermeiren`<mailto:jorritv@opera.com> Test checks that directional focus navigation properties work on input elements. nav-dir-004 Directional Focus Navigation - floating elements interact http://www.w3.org/TR/css3-ui/#nav-dir ff374aa043d586c90cb2f582b5c21f529f17f4d8 `Jorrit Vermeiren`<mailto:jorritv@opera.com> Test checks that directional focus navigation properties work on floating elements. nav-dir-005 Directional Focus Navigation - currently focused element interact http://www.w3.org/TR/css3-ui/#nav-dir f0cc038b2b170db6e6faed56e76c62773fc939a3 `Jorrit Vermeiren`<mailto:jorritv@opera.com> Test checks that focus doesn't change when navigating to the currently focused element. +nav-dir-missing-1 Directional Focus Navigation - unkown element id interact http://www.w3.org/TR/css3-ui/#nav-dir 23e4724d74954bc0ccfc48eadd29c6ceba856165 `Florian Rivoal`<mailto:florian@rivoal.net> Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation. +nav-dir-missing-2 Directional Focus Navigation - unkown element id interact http://www.w3.org/TR/css3-ui/#nav-dir aeafaf1a2c45fe6fab26ccd0d14d8f1996bd874b `Florian Rivoal`<mailto:florian@rivoal.net> Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation. +nav-dir-missing-3 Directional Focus Navigation - unkown element id interact http://www.w3.org/TR/css3-ui/#nav-dir 7a7606e9c69252a3d65dcc86c8ad177351b44c07 `Florian Rivoal`<mailto:florian@rivoal.net> Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation. +nav-dir-missing-4 Directional Focus Navigation - unkown element id interact http://www.w3.org/TR/css3-ui/#nav-dir 8f490504f42544788898e31a620c613627ffafb5 `Florian Rivoal`<mailto:florian@rivoal.net> Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation. nav-dir-target-001 Directional Focus Navigation - 'current' target frame interact http://www.w3.org/TR/css3-ui/#nav-dir 93cfe1cda155ea8d4ba50ee2b2accf01e19164cb `Jorrit Vermeiren`<mailto:jorritv@opera.com> Test checks that the 'current' frame value is respected. nav-dir-target-002 Directional Focus Navigation - 'root' target frame interact http://www.w3.org/TR/css3-ui/#nav-dir 6f1c8ff0bfeadf4d48a043568c673a90ee382a25 `Jorrit Vermeiren`<mailto:jorritv@opera.com> Test checks that the 'root' frame value is respected. nav-dir-target-003 Directional Focus Navigation - named target frame interact http://www.w3.org/TR/css3-ui/#nav-dir 14aa923cccd163d6c5e9e29f39656df8d276303f `Jorrit Vermeiren`<mailto:jorritv@opera.com> Test checks that a named target frame value is respected. @@ -153,7 +154,7 @@ nav-up-016 Directional Focus Navigation - disabled elements are not navigated f outline-001 reference/ref-filled-green-100px-square outline - create outline likes border property http://www.w3.org/TR/css3-ui/#outline 149a87304e31bf6b569360069a8f8be1d23538b8 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the outline property creates outlines around visual objects and makes them stand out outline-002 reference/ref-filled-green-100px-square outline - inherit (basic) http://www.w3.org/TR/css3-ui/#outline 71919648c35740004dd90b4acdba5f5b98a3655c `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the outline property inherits the parent's value when outline set inherit outline-color-001 reference/ref-filled-green-100px-square outline-color - inherit (basic) http://www.w3.org/TR/css3-ui/#outline-color a776bdc125fc5dcc83d0cfb361d9d19cc9b3eba4 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the color of sub element outline is same as the color of parent element outline when outline-color set inherit -outline-offset reference/outline-offset ttwf-reftest-outline-offset-ref http://www.w3.org/TR/css3-ui/#outline-offset 9f206bb6b3a487d7699ec9cd2acf0c8dcbea899a `jy-jeung`<mailto:kein119@naver.com> +outline-offset reference/outline-offset ttwf-reftest-outline-offset-ref http://www.w3.org/TR/css3-ui/#outline-offset 21bd9169e501282f6ddc905cf0b066f9dd730e5b `jy-jeung`<mailto:kein119@naver.com> outline-offset-001 reference/ref-filled-green-100px-square outline-offset - length (basic) http://www.w3.org/TR/css3-ui/#outline-offset 465df8192fe5ee54660d205d9d3f271ef84c1788 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the outline-offset keeps spacing between outline and element content outline-style-001 reference/outline-style-001-ref outline-style - dotted (basic) http://www.w3.org/TR/css3-ui/#outline-style,http://www.w3.org/TR/CSS21/box.html#value-def-border-style 9b6764e372cceab67dda037ff6138d0e911b1dec `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the outline style is dotted when outline-style set dotted outline-style-002 reference/outline-style-002-ref outline-style - inherit (basic) http://www.w3.org/TR/css3-ui/#outline-style,http://www.w3.org/TR/CSS21/box.html#value-def-border-style 695fbf49c18c77abfca3e5c42c9359ab9afdf1f1 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the sub element outline style is same as parent element outline style when outline-style set inherit diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-001.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-001.xht deleted file mode 100644 index 6f5fd31dbe2..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-001.xht +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>CSS Test: Box Sizing - Padding-Box with specified width/height</title> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" /> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" /> - <meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge." /> - <style type="text/css"><![CDATA[ - .container { - width: 300px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - width: 50%; - z-index: 1; - float: left; - padding: 0px 5px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - ]]></style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br /> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-002.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-002.xht deleted file mode 100644 index 3cfa20c2060..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-002.xht +++ /dev/null @@ -1,45 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>CSS Test: Box Sizing - Padding-Box with specified width/height</title> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" /> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" /> - <meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge." /> - <style type="text/css"><![CDATA[ - .container { - width: 300px; - height: 400px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - width: 50%; - height: 100%; - z-index: 1; - float: left; - padding: 25px 10px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - ]]></style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br /> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-003.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-003.xht deleted file mode 100644 index e5fa2458611..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-padding-box-003.xht +++ /dev/null @@ -1,49 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>CSS Test: Box Sizing - Padding-Box with min/max width/height</title> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" /> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" /> - <meta name="assert" content="box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge." /> - <style type="text/css"><![CDATA[ - .container { - min-width: 500px; - max-width: 700px; - min-height: 70px; - max-height: 90px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - min-width: 250px; - max-width: 350px; - min-height: 70px; - max-height: 90px; - z-index: 1; - float: left; - padding: 5px 5px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - ]]></style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br /> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-replaced-001.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-replaced-001.xht index 8e41af6a976..cd034e8d277 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-replaced-001.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/box-sizing-replaced-001.xht @@ -21,7 +21,7 @@ .with-padding { padding: 5px 5px; - box-sizing: padding-box; + box-sizing: border-box; } #img1 { diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-3.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-3.xht index 073f83eb7bf..da48b06864b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-3.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-3.xht @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Box Model addition (13 tests)</h2> + <h2>Box Model addition (10 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -37,7 +37,7 @@ <tr><th colspan="4" scope="rowgroup"> <a href="#s3.1">+</a> <a href="http://www.w3.org/TR/css3-ui/#box-sizing">3.1 box-sizing property</a></th></tr> - <!-- 13 tests --> + <!-- 10 tests --> <tr id="box-sizing-border-box-001-3.1" class="primary"> <td><strong> <a href="box-sizing-border-box-001.xht">box-sizing-border-box-001</a></strong></td> @@ -115,39 +115,6 @@ </ul> </td> </tr> - <tr id="box-sizing-padding-box-001-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-001.xht">box-sizing-padding-box-001</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with specified width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge.</li> - </ul> - </td> - </tr> - <tr id="box-sizing-padding-box-002-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-002.xht">box-sizing-padding-box-002</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with specified width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge.</li> - </ul> - </td> - </tr> - <tr id="box-sizing-padding-box-003-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-003.xht">box-sizing-padding-box-003</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with min/max width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge.</li> - </ul> - </td> - </tr> <tr id="box-sizing-replaced-001-3.1" class="primary image"> <td><strong> <a href="box-sizing-replaced-001.xht">box-sizing-replaced-001</a></strong></td> @@ -185,12 +152,30 @@ <tbody id="s3.1.#box-sizing-example"> <!-- 0 tests --> </tbody> - <tbody id="s3.1.#issue-9bd5c115"> + <tbody id="s3.1.#example-ede4dfdf"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#max-inner-height"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#max-inner-width"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#min-inner-height"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#min-inner-width"> <!-- 0 tests --> </tbody> <tbody id="s3.1.#propdef-box-sizing"> <!-- 0 tests --> </tbody> + <tbody id="s3.1.#valdef-box-sizing-border-box"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#valdef-box-sizing-content-box"> + <!-- 0 tests --> + </tbody> </table> </body> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-4.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-4.xht index 2fc6962954d..fe5180869db 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-4.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-4.xht @@ -143,6 +143,12 @@ </td> </tr> </tbody> + <tbody id="s4.4.#example-4b3084c1"> + <!-- 0 tests --> + </tbody> + <tbody id="s4.4.#example-bcd0e0d3"> + <!-- 0 tests --> + </tbody> <tbody id="s4.4.#invert"> <!-- 0 tests --> </tbody> @@ -174,6 +180,12 @@ </td> </tr> </tbody> + <tbody id="s4.5.#example-8c7e0106"> + <!-- 0 tests --> + </tbody> + <tbody id="s4.5.#negative-offset"> + <!-- 0 tests --> + </tbody> <tbody id="s4.5.#propdef-outline-offset"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-5.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-5.xht index 76841a31a90..710e3a1c7a0 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-5.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-5.xht @@ -116,6 +116,9 @@ </td> </tr> </tbody> + <tbody id="s5.1.#example-0ff410a0"> + <!-- 0 tests --> + </tbody> <tbody id="s5.1.#propdef-resize"> <!-- 0 tests --> </tbody> @@ -187,6 +190,24 @@ <tbody id="s5.2.#ellipsis-scrolling"> <!-- 0 tests --> </tbody> + <tbody id="s5.2.#example-4d792064"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#example-c43e380d"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#example-d22e5e5b"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-clip"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-ellipsis"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-string"> + <!-- 0 tests --> + </tbody> <tbody id="s5.2.#propdef-text-overflow"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-6.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-6.xht index b0901b26bcb..a84e6d2d825 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-6.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-6.xht @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Pointing Devices and Keyboards (138 tests)</h2> + <h2>Pointing Devices and Keyboards (142 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -66,44 +66,44 @@ </ul> </td> </tr> - <tr id="cursor-image-003-6.1.1" class="primary image interact"> + <tr id="cursor-image-003-6.1.1" class="primary image interact may"> <td><strong> <a href="cursor-image-003.xht">cursor-image-003</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="may" title="Behavior tested is preferred but optional">Optional</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an ICO image is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-004-6.1.1" class="primary image interact"> + <tr id="cursor-image-004-6.1.1" class="primary image interact may"> <td><strong> <a href="cursor-image-004.xht">cursor-image-004</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="may" title="Behavior tested is preferred but optional">Optional</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an ICO image, with its own hotspot, is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-005-6.1.1" class="primary image interact svg"> + <tr id="cursor-image-005-6.1.1" class="primary interact svg"> <td><strong> <a href="cursor-image-005.xht">cursor-image-005</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that a fixed size SVG image is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-005-nfs-6.1.1" class="primary image interact svg"> + <tr id="cursor-image-005-nfs-6.1.1" class="primary interact svg"> <td><strong> <a href="cursor-image-005-nfs.xht">cursor-image-005-nfs</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images.</li> @@ -661,6 +661,9 @@ </td> </tr> </tbody> + <tbody id="s6.1.1.#example-4a59cfe4"> + <!-- 0 tests --> + </tbody> <tbody id="s6.1.1.#propdef-cursor"> <!-- 0 tests --> </tbody> @@ -715,6 +718,9 @@ </td> </tr> </tbody> + <tbody id="s6.2.1.#example-24147f22"> + <!-- 0 tests --> + </tbody> <tbody id="s6.2.1.#propdef-caret-color"> <!-- 0 tests --> </tbody> @@ -728,7 +734,7 @@ <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1">+</a> <a href="http://www.w3.org/TR/css3-ui/#nav-dir">6.3.1 Directional focus navigation: the nav-up, nav-right, nav-down, nav-left properties</a></th></tr> - <!-- 79 tests --> + <!-- 83 tests --> <tr id="nav-dir-001-6.3.1" class="primary interact"> <td><strong> <a href="nav-dir-001.xht">nav-dir-001</a></strong></td> @@ -784,6 +790,50 @@ </ul> </td> </tr> + <tr id="nav-dir-missing-1-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-1.xht">nav-dir-missing-1</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-2-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-2.xht">nav-dir-missing-2</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-3-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-3.xht">nav-dir-missing-3</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-4-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-4.xht">nav-dir-missing-4</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> <tr id="nav-dir-target-001-6.3.1" class="primary interact"> <td><strong> <a href="nav-dir-target-001.xht">nav-dir-target-001</a></strong></td> @@ -1614,13 +1664,19 @@ <tbody id="s6.3.1.1"> <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1.1">+</a> - <a href="http://www.w3.org/TR/css3-ui/#example-positioned-buttons">6.3.1.1 Example: positioned buttons</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#example-b196d206">6.3.1.1 Example: positioned buttons</a></th></tr> + <!-- 0 tests --> + </tbody> + <tbody id="s6.3.1.1.#example-positioned-buttons"> <!-- 0 tests --> </tbody> <tbody id="s6.3.1.2"> <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1.2">+</a> - <a href="http://www.w3.org/TR/css3-ui/#example-moving-focus-to-inside-a-frame">6.3.1.2 Example: moving focus to inside a frame</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#example-381d7fe7">6.3.1.2 Example: moving focus to inside a frame</a></th></tr> + <!-- 0 tests --> + </tbody> + <tbody id="s6.3.1.2.#example-moving-focus-to-inside-a-frame"> <!-- 0 tests --> </tbody> <tbody id="s6.3.2"> @@ -1629,13 +1685,10 @@ <a href="http://www.w3.org/TR/css3-ui/#input-method-editor">6.3.2 Obsolete: the ime-mode property</a></th></tr> <!-- 0 tests --> </tbody> - <tbody id="s.#abstract"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-align-3"> + <tbody id="s6.3.2.#example-8592b31b"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-animations-1"> + <tbody id="s.#abstract"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-css-backgrounds-3"> @@ -1644,24 +1697,9 @@ <tbody id="s.#biblio-css-color-3"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-color-4"> - <!-- 0 tests --> - </tbody> <tbody id="s.#biblio-css-images-3"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-masking-1"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-overflow-3"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-position-3"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-style-attr-1"> - <!-- 0 tests --> - </tbody> <tbody id="s.#biblio-css-values-3"> <!-- 0 tests --> </tbody> @@ -1677,6 +1715,9 @@ <tbody id="s.#biblio-css21"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-css3-background"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-css3-writing-modes"> <!-- 0 tests --> </tbody> @@ -1686,18 +1727,30 @@ <tbody id="s.#biblio-css3color"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-css4-images"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-cssui"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-html5"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-png"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-rfc2119"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-select"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-svg"> + <!-- 0 tests --> + </tbody> + <tbody id="s.#biblio-svg-integration"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-svg10"> <!-- 0 tests --> </tbody> @@ -1716,6 +1769,12 @@ <tbody id="s.#conventions"> <!-- 0 tests --> </tbody> + <tbody id="s.#cr-exit-criteria"> + <!-- 0 tests --> + </tbody> + <tbody id="s.#example-f839f6c8"> + <!-- 0 tests --> + </tbody> <tbody id="s.#experimental"> <!-- 0 tests --> </tbody> @@ -1731,9 +1790,6 @@ <tbody id="s.#informative"> <!-- 0 tests --> </tbody> - <tbody id="s.#issues-index"> - <!-- 0 tests --> - </tbody> <tbody id="s.#normative"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-B.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-B.xht index 17fdbfaf2f5..3ab681fd67e 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-B.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-B.xht @@ -33,7 +33,19 @@ <a href="http://www.w3.org/TR/css3-ui/#changes">B Changes</a></th></tr> <!-- 0 tests --> </tbody> - <tbody id="sB.#changes-list"> + <tbody id="sB.#changes-since-2012"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-02"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-03"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-04"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-05"> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-C.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-C.xht index dcd1d513275..c5a82188172 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-C.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-C.xht @@ -3,7 +3,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> - <title>Default style sheet additions for HTML - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <title>Considerations for Security and Privacy - CSS Basic User Interface Module Level 3 CR Test Suite</title> <style type="text/css"> @import "http://www.w3.org/StyleSheets/TR/base.css"; @import "../indices.css"; @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Default style sheet additions for HTML (0 tests)</h2> + <h2>Considerations for Security and Privacy (0 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -30,7 +30,7 @@ <tbody id="sC"> <tr><th colspan="4" scope="rowgroup"> <a href="#sC">+</a> - <a href="http://www.w3.org/TR/css3-ui/#default-style-sheet">C Default style sheet additions for HTML</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#security-privacy-considerations">C Considerations for Security and Privacy</a></th></tr> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-D.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-D.xht index ea214aabe7e..4076722e6df 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-D.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-D.xht @@ -3,7 +3,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> - <title>Test Suite - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <title>Default style sheet additions for HTML - CSS Basic User Interface Module Level 3 CR Test Suite</title> <style type="text/css"> @import "http://www.w3.org/StyleSheets/TR/base.css"; @import "../indices.css"; @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Test Suite (0 tests)</h2> + <h2>Default style sheet additions for HTML (0 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -30,7 +30,7 @@ <tbody id="sD"> <tr><th colspan="4" scope="rowgroup"> <a href="#sD">+</a> - <a href="http://www.w3.org/TR/css3-ui/#test-suite">D Test Suite</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#default-style-sheet">D Default style sheet additions for HTML</a></th></tr> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-E.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-E.xht new file mode 100644 index 00000000000..0c9b64d2175 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-E.xht @@ -0,0 +1,39 @@ + + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Test Suite - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <style type="text/css"> + @import "http://www.w3.org/StyleSheets/TR/base.css"; + @import "../indices.css"; + </style> + </head> + + <body> + + <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> + <h2>Test Suite (0 tests)</h2> + <table width="100%"> + <col id="test-column"></col> + <col id="refs-column"></col> + <col id="flags-column"></col> + <col id="info-column"></col> + <thead> + <tr> + <th>Test</th> + <th><abbr title="Rendering References">Refs</abbr></th> + <th>Flags</th> + <th>Info</th> + </tr> + </thead> + <tbody id="sE"> + <tr><th colspan="4" scope="rowgroup"> + <a href="#sE">+</a> + <a href="http://www.w3.org/TR/css3-ui/#test-suite">E Test Suite</a></th></tr> + <!-- 0 tests --> + </tbody> + </table> + + </body> +</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-001.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-001.xht index 31a3e20f164..8d3284c1239 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-001.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-001.xht @@ -1,16 +1,19 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that a PNG image supported as a custom cursor." name="assert" /> <style> div.test{background: #D2B48C; border: 2px solid #555; - cursor:url(support/cursors/woolly-64.png) 41 32, help; width:128px; height: 128px} + cursor:url(support/cursors/woolly-64.png) 41 32, help; + width: 128px; height: 128px} </style> </head><body> <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-002.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-002.xht index 0d4a0dfde37..fc899c4f851 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-002.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-002.xht @@ -1,6 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image" name="flags" /> <meta charset="UTF-8" /> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-003.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-003.xht index f55183577e4..55bcafeba2b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-003.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-003.xht @@ -1,8 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> -<meta content="interact image" name="flags" /> +<meta content="interact image may" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that an ICO image is supported as a custom cursor." name="assert" /> @@ -15,4 +16,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-004.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-004.xht index f0d0baf7556..f18e28ee1b4 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-004.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-004.xht @@ -1,8 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> -<meta content="interact image" name="flags" /> +<meta content="interact image may" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that an ICO image, with its own hotspot, is supported as a custom cursor." name="assert" /> <style> @@ -14,4 +15,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005-nfs.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005-nfs.xht index d9003e15295..946966a655f 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005-nfs.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005-nfs.xht @@ -1,9 +1,10 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <link href="http://www.w3.org/TR/css3-images/#default-object-size" rel="help" /> -<meta content="interact image svg" name="flags" /> +<meta content="interact svg" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images." name="assert" /> <style> @@ -15,4 +16,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005.xht index d65a40a84c5..a9bbb977c7d 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-005.xht @@ -1,8 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> -<meta content="interact image svg" name="flags" /> +<meta content="interact svg" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that a fixed size SVG image is supported as a custom cursor." name="assert" /> <style> @@ -14,4 +15,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-009.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-009.xht index 41484cca15f..13d1d59c82d 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-009.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-009.xht @@ -1,6 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value, no fallback</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image invalid" name="flags" /> <meta charset="UTF-8" /> @@ -16,4 +17,5 @@ <p>If inside the rectangle the cursor changes to the word "FAIL" on a red background, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-012.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-012.xht index 1ecd1b4d965..39d56416131 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-012.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/cursor-image-012.xht @@ -1,6 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image" name="flags" /> <meta charset="UTF-8" /> @@ -16,4 +17,5 @@ a rainbow AND is not a rainbow when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-1.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-1.xht new file mode 100644 index 00000000000..7b04b19e5f9 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-1.xht @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-right: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating right moves the focus to the "FINISH" link.</p> + + <a href="" id="start">START</a> <a href="" id="finish">FINISH</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-2.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-2.xht new file mode 100644 index 00000000000..0be21485f98 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-2.xht @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-left: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating left moves the focus to the "FINISH" link.</p> + + <a href="" id="finish">FINISH</a> <a href="" id="start">START</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-3.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-3.xht new file mode 100644 index 00000000000..a073ee78ca1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-3.xht @@ -0,0 +1,22 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-down: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating down moves the focus to the "FINISH" link.</p> + + <a href="" id="start">START</a><br /> + <a href="" id="finish">FINISH</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-4.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-4.xht new file mode 100644 index 00000000000..139f9d12a69 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/nav-dir-missing-4.xht @@ -0,0 +1,22 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-up: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating up moves the focus to the "FINISH" link.</p> + + <a href="" id="finish">FINISH</a><br /> + <a href="" id="start">START</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/outline-offset.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/outline-offset.xht index 157e197c4b6..f29f2a3f0d7 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/outline-offset.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/outline-offset.xht @@ -16,7 +16,7 @@ </style> </head> <body> - <p>PASS is there a space between the border.</p> + <p>PASS if there a space between the border.</p> <div> </div> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/green.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/green.ico Binary files differnew file mode 100644 index 00000000000..691f61166f0 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/green.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/h100.svg new file mode 100644 index 00000000000..e7bd34342c1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/h100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/h100_r1-1.svg new file mode 100644 index 00000000000..f77cfcbb9d4 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/h100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/r1-1.svg new file mode 100644 index 00000000000..7f4b4516635 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/red.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/red.ico Binary files differnew file mode 100644 index 00000000000..22a7b36fe3e --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/red.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100.svg new file mode 100644 index 00000000000..0b91c8539d2 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100_h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100_h100.svg new file mode 100644 index 00000000000..f094372ec6a --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100_h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100_r1-1.svg new file mode 100644 index 00000000000..5d44b4ffa01 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/reference/support/w100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/green.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/green.ico Binary files differnew file mode 100644 index 00000000000..691f61166f0 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/green.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/h100.svg new file mode 100644 index 00000000000..e7bd34342c1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/h100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/h100_r1-1.svg new file mode 100644 index 00000000000..f77cfcbb9d4 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/h100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/r1-1.svg new file mode 100644 index 00000000000..7f4b4516635 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/red.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/red.ico Binary files differnew file mode 100644 index 00000000000..22a7b36fe3e --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/red.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100.svg new file mode 100644 index 00000000000..0b91c8539d2 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100_h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100_h100.svg new file mode 100644 index 00000000000..f094372ec6a --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100_h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100_r1-1.svg new file mode 100644 index 00000000000..5d44b4ffa01 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/support/w100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/toc.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/toc.xht index 6500058064e..38013ab3619 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1/toc.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1/toc.xht @@ -32,7 +32,7 @@ <tbody id="s3"> <tr><th><a href="chapter-3.xht">Chapter 3 - Box Model addition</a></th> - <td>(13 Tests)</td></tr> + <td>(10 Tests)</td></tr> </tbody> <tbody id="s4"> <tr><th><a href="chapter-4.xht">Chapter 4 - @@ -47,7 +47,7 @@ <tbody id="s6"> <tr><th><a href="chapter-6.xht">Chapter 6 - Pointing Devices and Keyboards</a></th> - <td>(138 Tests)</td></tr> + <td>(142 Tests)</td></tr> </tbody> <tbody id="sA"> <tr><th><a href="chapter-A.xht">Appendix A - @@ -61,11 +61,16 @@ </tbody> <tbody id="sC"> <tr><th><a href="chapter-C.xht">Appendix C - - Default style sheet additions for HTML</a></th> + Considerations for Security and Privacy</a></th> <td>(0 Tests)</td></tr> </tbody> <tbody id="sD"> <tr><th><a href="chapter-D.xht">Appendix D - + Default style sheet additions for HTML</a></th> + <td>(0 Tests)</td></tr> + </tbody> + <tbody id="sE"> + <tr><th><a href="chapter-E.xht">Appendix E - Test Suite</a></th> <td>(0 Tests)</td></tr> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-001.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-001.xht deleted file mode 100644 index f1e5189b07f..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-001.xht +++ /dev/null @@ -1,52 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>CSS Test: Box Sizing - Padding-Box with specified width/height</title> - <style type="text/css"> - @page { font: italic 8pt sans-serif; color: gray; - margin: 7%; - counter-increment: page; - @top-left { content: "CSS Basic User Interface Module Level 3 CR Test Suite"; } - @top-right { content: "Test box-sizing-padding-box-001"; } - @bottom-right { content: counter(page); } - } -</style> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" /> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" /> - <meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge." /> - <style type="text/css"><![CDATA[ - .container { - width: 300px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - width: 50%; - z-index: 1; - float: left; - padding: 0px 5px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - ]]></style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br /> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-002.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-002.xht deleted file mode 100644 index 2bd0c7691d3..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-002.xht +++ /dev/null @@ -1,54 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>CSS Test: Box Sizing - Padding-Box with specified width/height</title> - <style type="text/css"> - @page { font: italic 8pt sans-serif; color: gray; - margin: 7%; - counter-increment: page; - @top-left { content: "CSS Basic User Interface Module Level 3 CR Test Suite"; } - @top-right { content: "Test box-sizing-padding-box-002"; } - @bottom-right { content: counter(page); } - } -</style> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" /> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" /> - <meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge." /> - <style type="text/css"><![CDATA[ - .container { - width: 300px; - height: 400px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - width: 50%; - height: 100%; - z-index: 1; - float: left; - padding: 25px 10px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - ]]></style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br /> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-003.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-003.xht deleted file mode 100644 index 1ec65ab8a5f..00000000000 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-padding-box-003.xht +++ /dev/null @@ -1,58 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>CSS Test: Box Sizing - Padding-Box with min/max width/height</title> - <style type="text/css"> - @page { font: italic 8pt sans-serif; color: gray; - margin: 7%; - counter-increment: page; - @top-left { content: "CSS Basic User Interface Module Level 3 CR Test Suite"; } - @top-right { content: "Test box-sizing-padding-box-003"; } - @bottom-right { content: counter(page); } - } -</style> - <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" /> - <link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" /> - <meta name="assert" content="box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge." /> - <style type="text/css"><![CDATA[ - .container { - min-width: 500px; - max-width: 700px; - min-height: 70px; - max-height: 90px; - border: 2px solid black; - position: absolute; - left: 25px; - top: 25px; - background-color: red; - } - - .box-sized { - box-sizing: padding-box; - min-width: 250px; - max-width: 350px; - min-height: 70px; - max-height: 90px; - z-index: 1; - float: left; - padding: 5px 5px; - } - - #one { - background-color: green; - } - - #two { - background-color: blue; - } - ]]></style> - </head> - <body> - The two divs should be side-by-side, not one on top of another. No red should be visible. - <br /> - <div class="container"> - <div class="box-sized" id="one">LEFT HALF</div> - <div class="box-sized" id="two">RIGHT HALF</div> - </div> - </body> -</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-replaced-001.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-replaced-001.xht index f51f863a7c3..be63611923f 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-replaced-001.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/box-sizing-replaced-001.xht @@ -30,7 +30,7 @@ .with-padding { padding: 5px 5px; - box-sizing: padding-box; + box-sizing: border-box; } #img1 { diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-3.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-3.xht index 073f83eb7bf..da48b06864b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-3.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-3.xht @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Box Model addition (13 tests)</h2> + <h2>Box Model addition (10 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -37,7 +37,7 @@ <tr><th colspan="4" scope="rowgroup"> <a href="#s3.1">+</a> <a href="http://www.w3.org/TR/css3-ui/#box-sizing">3.1 box-sizing property</a></th></tr> - <!-- 13 tests --> + <!-- 10 tests --> <tr id="box-sizing-border-box-001-3.1" class="primary"> <td><strong> <a href="box-sizing-border-box-001.xht">box-sizing-border-box-001</a></strong></td> @@ -115,39 +115,6 @@ </ul> </td> </tr> - <tr id="box-sizing-padding-box-001-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-001.xht">box-sizing-padding-box-001</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with specified width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge.</li> - </ul> - </td> - </tr> - <tr id="box-sizing-padding-box-002-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-002.xht">box-sizing-padding-box-002</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with specified width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge.</li> - </ul> - </td> - </tr> - <tr id="box-sizing-padding-box-003-3.1" class="primary"> - <td><strong> - <a href="box-sizing-padding-box-003.xht">box-sizing-padding-box-003</a></strong></td> - <td></td> - <td></td> - <td>Box Sizing - Padding-Box with min/max width/height - <ul class="assert"> - <li>box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge.</li> - </ul> - </td> - </tr> <tr id="box-sizing-replaced-001-3.1" class="primary image"> <td><strong> <a href="box-sizing-replaced-001.xht">box-sizing-replaced-001</a></strong></td> @@ -185,12 +152,30 @@ <tbody id="s3.1.#box-sizing-example"> <!-- 0 tests --> </tbody> - <tbody id="s3.1.#issue-9bd5c115"> + <tbody id="s3.1.#example-ede4dfdf"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#max-inner-height"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#max-inner-width"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#min-inner-height"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#min-inner-width"> <!-- 0 tests --> </tbody> <tbody id="s3.1.#propdef-box-sizing"> <!-- 0 tests --> </tbody> + <tbody id="s3.1.#valdef-box-sizing-border-box"> + <!-- 0 tests --> + </tbody> + <tbody id="s3.1.#valdef-box-sizing-content-box"> + <!-- 0 tests --> + </tbody> </table> </body> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-4.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-4.xht index 2fc6962954d..fe5180869db 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-4.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-4.xht @@ -143,6 +143,12 @@ </td> </tr> </tbody> + <tbody id="s4.4.#example-4b3084c1"> + <!-- 0 tests --> + </tbody> + <tbody id="s4.4.#example-bcd0e0d3"> + <!-- 0 tests --> + </tbody> <tbody id="s4.4.#invert"> <!-- 0 tests --> </tbody> @@ -174,6 +180,12 @@ </td> </tr> </tbody> + <tbody id="s4.5.#example-8c7e0106"> + <!-- 0 tests --> + </tbody> + <tbody id="s4.5.#negative-offset"> + <!-- 0 tests --> + </tbody> <tbody id="s4.5.#propdef-outline-offset"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-5.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-5.xht index 76841a31a90..710e3a1c7a0 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-5.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-5.xht @@ -116,6 +116,9 @@ </td> </tr> </tbody> + <tbody id="s5.1.#example-0ff410a0"> + <!-- 0 tests --> + </tbody> <tbody id="s5.1.#propdef-resize"> <!-- 0 tests --> </tbody> @@ -187,6 +190,24 @@ <tbody id="s5.2.#ellipsis-scrolling"> <!-- 0 tests --> </tbody> + <tbody id="s5.2.#example-4d792064"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#example-c43e380d"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#example-d22e5e5b"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-clip"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-ellipsis"> + <!-- 0 tests --> + </tbody> + <tbody id="s5.2.#overflow-string"> + <!-- 0 tests --> + </tbody> <tbody id="s5.2.#propdef-text-overflow"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-6.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-6.xht index b0901b26bcb..a84e6d2d825 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-6.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-6.xht @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Pointing Devices and Keyboards (138 tests)</h2> + <h2>Pointing Devices and Keyboards (142 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -66,44 +66,44 @@ </ul> </td> </tr> - <tr id="cursor-image-003-6.1.1" class="primary image interact"> + <tr id="cursor-image-003-6.1.1" class="primary image interact may"> <td><strong> <a href="cursor-image-003.xht">cursor-image-003</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="may" title="Behavior tested is preferred but optional">Optional</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an ICO image is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-004-6.1.1" class="primary image interact"> + <tr id="cursor-image-004-6.1.1" class="primary image interact may"> <td><strong> <a href="cursor-image-004.xht">cursor-image-004</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="may" title="Behavior tested is preferred but optional">Optional</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an ICO image, with its own hotspot, is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-005-6.1.1" class="primary image interact svg"> + <tr id="cursor-image-005-6.1.1" class="primary interact svg"> <td><strong> <a href="cursor-image-005.xht">cursor-image-005</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that a fixed size SVG image is supported as a custom cursor.</li> </ul> </td> </tr> - <tr id="cursor-image-005-nfs-6.1.1" class="primary image interact svg"> + <tr id="cursor-image-005-nfs-6.1.1" class="primary interact svg"> <td><strong> <a href="cursor-image-005-nfs.xht">cursor-image-005-nfs</a></strong></td> <td></td> - <td><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td> <td>Cursor property, url value <ul class="assert"> <li>Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images.</li> @@ -661,6 +661,9 @@ </td> </tr> </tbody> + <tbody id="s6.1.1.#example-4a59cfe4"> + <!-- 0 tests --> + </tbody> <tbody id="s6.1.1.#propdef-cursor"> <!-- 0 tests --> </tbody> @@ -715,6 +718,9 @@ </td> </tr> </tbody> + <tbody id="s6.2.1.#example-24147f22"> + <!-- 0 tests --> + </tbody> <tbody id="s6.2.1.#propdef-caret-color"> <!-- 0 tests --> </tbody> @@ -728,7 +734,7 @@ <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1">+</a> <a href="http://www.w3.org/TR/css3-ui/#nav-dir">6.3.1 Directional focus navigation: the nav-up, nav-right, nav-down, nav-left properties</a></th></tr> - <!-- 79 tests --> + <!-- 83 tests --> <tr id="nav-dir-001-6.3.1" class="primary interact"> <td><strong> <a href="nav-dir-001.xht">nav-dir-001</a></strong></td> @@ -784,6 +790,50 @@ </ul> </td> </tr> + <tr id="nav-dir-missing-1-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-1.xht">nav-dir-missing-1</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-2-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-2.xht">nav-dir-missing-2</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-3-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-3.xht">nav-dir-missing-3</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> + <tr id="nav-dir-missing-4-6.3.1" class="primary interact"> + <td><strong> + <a href="nav-dir-missing-4.xht">nav-dir-missing-4</a></strong></td> + <td></td> + <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td> + <td>Directional Focus Navigation - unkown element id + <ul class="assert"> + <li>Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation.</li> + </ul> + </td> + </tr> <tr id="nav-dir-target-001-6.3.1" class="primary interact"> <td><strong> <a href="nav-dir-target-001.xht">nav-dir-target-001</a></strong></td> @@ -1614,13 +1664,19 @@ <tbody id="s6.3.1.1"> <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1.1">+</a> - <a href="http://www.w3.org/TR/css3-ui/#example-positioned-buttons">6.3.1.1 Example: positioned buttons</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#example-b196d206">6.3.1.1 Example: positioned buttons</a></th></tr> + <!-- 0 tests --> + </tbody> + <tbody id="s6.3.1.1.#example-positioned-buttons"> <!-- 0 tests --> </tbody> <tbody id="s6.3.1.2"> <tr><th colspan="4" scope="rowgroup"> <a href="#s6.3.1.2">+</a> - <a href="http://www.w3.org/TR/css3-ui/#example-moving-focus-to-inside-a-frame">6.3.1.2 Example: moving focus to inside a frame</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#example-381d7fe7">6.3.1.2 Example: moving focus to inside a frame</a></th></tr> + <!-- 0 tests --> + </tbody> + <tbody id="s6.3.1.2.#example-moving-focus-to-inside-a-frame"> <!-- 0 tests --> </tbody> <tbody id="s6.3.2"> @@ -1629,13 +1685,10 @@ <a href="http://www.w3.org/TR/css3-ui/#input-method-editor">6.3.2 Obsolete: the ime-mode property</a></th></tr> <!-- 0 tests --> </tbody> - <tbody id="s.#abstract"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-align-3"> + <tbody id="s6.3.2.#example-8592b31b"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-animations-1"> + <tbody id="s.#abstract"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-css-backgrounds-3"> @@ -1644,24 +1697,9 @@ <tbody id="s.#biblio-css-color-3"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-color-4"> - <!-- 0 tests --> - </tbody> <tbody id="s.#biblio-css-images-3"> <!-- 0 tests --> </tbody> - <tbody id="s.#biblio-css-masking-1"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-overflow-3"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-position-3"> - <!-- 0 tests --> - </tbody> - <tbody id="s.#biblio-css-style-attr-1"> - <!-- 0 tests --> - </tbody> <tbody id="s.#biblio-css-values-3"> <!-- 0 tests --> </tbody> @@ -1677,6 +1715,9 @@ <tbody id="s.#biblio-css21"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-css3-background"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-css3-writing-modes"> <!-- 0 tests --> </tbody> @@ -1686,18 +1727,30 @@ <tbody id="s.#biblio-css3color"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-css4-images"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-cssui"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-html5"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-png"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-rfc2119"> <!-- 0 tests --> </tbody> <tbody id="s.#biblio-select"> <!-- 0 tests --> </tbody> + <tbody id="s.#biblio-svg"> + <!-- 0 tests --> + </tbody> + <tbody id="s.#biblio-svg-integration"> + <!-- 0 tests --> + </tbody> <tbody id="s.#biblio-svg10"> <!-- 0 tests --> </tbody> @@ -1716,6 +1769,12 @@ <tbody id="s.#conventions"> <!-- 0 tests --> </tbody> + <tbody id="s.#cr-exit-criteria"> + <!-- 0 tests --> + </tbody> + <tbody id="s.#example-f839f6c8"> + <!-- 0 tests --> + </tbody> <tbody id="s.#experimental"> <!-- 0 tests --> </tbody> @@ -1731,9 +1790,6 @@ <tbody id="s.#informative"> <!-- 0 tests --> </tbody> - <tbody id="s.#issues-index"> - <!-- 0 tests --> - </tbody> <tbody id="s.#normative"> <!-- 0 tests --> </tbody> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-B.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-B.xht index 17fdbfaf2f5..3ab681fd67e 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-B.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-B.xht @@ -33,7 +33,19 @@ <a href="http://www.w3.org/TR/css3-ui/#changes">B Changes</a></th></tr> <!-- 0 tests --> </tbody> - <tbody id="sB.#changes-list"> + <tbody id="sB.#changes-since-2012"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-02"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-03"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-04"> + <!-- 0 tests --> + </tbody> + <tbody id="sB.#changes-since-2015-05"> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-C.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-C.xht index dcd1d513275..c5a82188172 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-C.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-C.xht @@ -3,7 +3,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> - <title>Default style sheet additions for HTML - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <title>Considerations for Security and Privacy - CSS Basic User Interface Module Level 3 CR Test Suite</title> <style type="text/css"> @import "http://www.w3.org/StyleSheets/TR/base.css"; @import "../indices.css"; @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Default style sheet additions for HTML (0 tests)</h2> + <h2>Considerations for Security and Privacy (0 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -30,7 +30,7 @@ <tbody id="sC"> <tr><th colspan="4" scope="rowgroup"> <a href="#sC">+</a> - <a href="http://www.w3.org/TR/css3-ui/#default-style-sheet">C Default style sheet additions for HTML</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#security-privacy-considerations">C Considerations for Security and Privacy</a></th></tr> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-D.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-D.xht index ea214aabe7e..4076722e6df 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-D.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-D.xht @@ -3,7 +3,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> - <title>Test Suite - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <title>Default style sheet additions for HTML - CSS Basic User Interface Module Level 3 CR Test Suite</title> <style type="text/css"> @import "http://www.w3.org/StyleSheets/TR/base.css"; @import "../indices.css"; @@ -13,7 +13,7 @@ <body> <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> - <h2>Test Suite (0 tests)</h2> + <h2>Default style sheet additions for HTML (0 tests)</h2> <table width="100%"> <col id="test-column"></col> <col id="refs-column"></col> @@ -30,7 +30,7 @@ <tbody id="sD"> <tr><th colspan="4" scope="rowgroup"> <a href="#sD">+</a> - <a href="http://www.w3.org/TR/css3-ui/#test-suite">D Test Suite</a></th></tr> + <a href="http://www.w3.org/TR/css3-ui/#default-style-sheet">D Default style sheet additions for HTML</a></th></tr> <!-- 0 tests --> </tbody> </table> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-E.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-E.xht new file mode 100644 index 00000000000..0c9b64d2175 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-E.xht @@ -0,0 +1,39 @@ + + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Test Suite - CSS Basic User Interface Module Level 3 CR Test Suite</title> + <style type="text/css"> + @import "http://www.w3.org/StyleSheets/TR/base.css"; + @import "../indices.css"; + </style> + </head> + + <body> + + <h1>CSS Basic User Interface Module Level 3 CR Test Suite</h1> + <h2>Test Suite (0 tests)</h2> + <table width="100%"> + <col id="test-column"></col> + <col id="refs-column"></col> + <col id="flags-column"></col> + <col id="info-column"></col> + <thead> + <tr> + <th>Test</th> + <th><abbr title="Rendering References">Refs</abbr></th> + <th>Flags</th> + <th>Info</th> + </tr> + </thead> + <tbody id="sE"> + <tr><th colspan="4" scope="rowgroup"> + <a href="#sE">+</a> + <a href="http://www.w3.org/TR/css3-ui/#test-suite">E Test Suite</a></th></tr> + <!-- 0 tests --> + </tbody> + </table> + + </body> +</html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-001.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-001.xht index 31a3e20f164..8d3284c1239 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-001.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-001.xht @@ -1,16 +1,19 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that a PNG image supported as a custom cursor." name="assert" /> <style> div.test{background: #D2B48C; border: 2px solid #555; - cursor:url(support/cursors/woolly-64.png) 41 32, help; width:128px; height: 128px} + cursor:url(support/cursors/woolly-64.png) 41 32, help; + width: 128px; height: 128px} </style> </head><body> <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-002.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-002.xht index 0d4a0dfde37..fc899c4f851 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-002.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-002.xht @@ -1,6 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image" name="flags" /> <meta charset="UTF-8" /> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-003.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-003.xht index f55183577e4..55bcafeba2b 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-003.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-003.xht @@ -1,8 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> -<meta content="interact image" name="flags" /> +<meta content="interact image may" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that an ICO image is supported as a custom cursor." name="assert" /> @@ -15,4 +16,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-004.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-004.xht index f0d0baf7556..f18e28ee1b4 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-004.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-004.xht @@ -1,8 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> -<meta content="interact image" name="flags" /> +<meta content="interact image may" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that an ICO image, with its own hotspot, is supported as a custom cursor." name="assert" /> <style> @@ -14,4 +15,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005-nfs.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005-nfs.xht index d9003e15295..946966a655f 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005-nfs.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005-nfs.xht @@ -1,9 +1,10 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <link href="http://www.w3.org/TR/css3-images/#default-object-size" rel="help" /> -<meta content="interact image svg" name="flags" /> +<meta content="interact svg" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that an SVG image with no fixed size is supported as a custom cursor at the default object size for cursor images." name="assert" /> <style> @@ -15,4 +16,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005.xht index d65a40a84c5..a9bbb977c7d 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-005.xht @@ -1,8 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> -<meta content="interact image svg" name="flags" /> +<meta content="interact svg" name="flags" /> <meta charset="UTF-8" /> <meta content="Test checks that a fixed size SVG image is supported as a custom cursor." name="assert" /> <style> @@ -14,4 +15,5 @@ <p>The test passes if, when moved inside the colored rectangle, the cursor looks like a sheep AND is not a sheep when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-009.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-009.xht index 41484cca15f..13d1d59c82d 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-009.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-009.xht @@ -1,6 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value, no fallback</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image invalid" name="flags" /> <meta charset="UTF-8" /> @@ -16,4 +17,5 @@ <p>If inside the rectangle the cursor changes to the word "FAIL" on a red background, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-012.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-012.xht index 1ecd1b4d965..39d56416131 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-012.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/cursor-image-012.xht @@ -1,6 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Cursor property, url value</title> <link href="mailto:chris@w3.org" rel="author" title="Chris Lilley" /> +<link href="http://florian.rivoal.net/" rel="reviewer" title="Florian Rivoal" /> <!-- 2015-04-12 --> <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help" /> <meta content="interact image" name="flags" /> <meta charset="UTF-8" /> @@ -16,4 +17,5 @@ a rainbow AND is not a rainbow when outside.</p> <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p> <div class="test"> </div> + </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-1.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-1.xht new file mode 100644 index 00000000000..7b04b19e5f9 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-1.xht @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-right' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-right: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating right moves the focus to the "FINISH" link.</p> + + <a href="" id="start">START</a> <a href="" id="finish">FINISH</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-2.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-2.xht new file mode 100644 index 00000000000..0be21485f98 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-2.xht @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-left' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-left: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating left moves the focus to the "FINISH" link.</p> + + <a href="" id="finish">FINISH</a> <a href="" id="start">START</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-3.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-3.xht new file mode 100644 index 00000000000..a073ee78ca1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-3.xht @@ -0,0 +1,22 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-down' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-down: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating down moves the focus to the "FINISH" link.</p> + + <a href="" id="start">START</a><br /> + <a href="" id="finish">FINISH</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-4.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-4.xht new file mode 100644 index 00000000000..139f9d12a69 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/nav-dir-missing-4.xht @@ -0,0 +1,22 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title> +<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" /> +<link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help" /> +<meta content="interact" name="flags" /> +<meta content="Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation." name="assert" /> +<style> +#start { +nav-up: #foo; +} +</style> +</head> +<body> + <p>First, use directional navigation to navigate the focus to the "START" link below.</p> + <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>. + In the SmartTV emulator, use the keypad in the GUI. --> + <p>Test passes if navigating up moves the focus to the "FINISH" link.</p> + + <a href="" id="finish">FINISH</a><br /> + <a href="" id="start">START</a> + +</body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/outline-offset.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/outline-offset.xht index 157e197c4b6..f29f2a3f0d7 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/outline-offset.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/outline-offset.xht @@ -16,7 +16,7 @@ </style> </head> <body> - <p>PASS is there a space between the border.</p> + <p>PASS if there a space between the border.</p> <div> </div> diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/green.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/green.ico Binary files differnew file mode 100644 index 00000000000..691f61166f0 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/green.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/h100.svg new file mode 100644 index 00000000000..e7bd34342c1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/h100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/h100_r1-1.svg new file mode 100644 index 00000000000..f77cfcbb9d4 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/h100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/r1-1.svg new file mode 100644 index 00000000000..7f4b4516635 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/red.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/red.ico Binary files differnew file mode 100644 index 00000000000..22a7b36fe3e --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/red.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100.svg new file mode 100644 index 00000000000..0b91c8539d2 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100_h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100_h100.svg new file mode 100644 index 00000000000..f094372ec6a --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100_h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100_r1-1.svg new file mode 100644 index 00000000000..5d44b4ffa01 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/support/w100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/green.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/green.ico Binary files differnew file mode 100644 index 00000000000..691f61166f0 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/green.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/h100.svg new file mode 100644 index 00000000000..e7bd34342c1 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/h100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/h100_r1-1.svg new file mode 100644 index 00000000000..f77cfcbb9d4 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/h100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" height="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/r1-1.svg new file mode 100644 index 00000000000..7f4b4516635 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/red.ico b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/red.ico Binary files differnew file mode 100644 index 00000000000..22a7b36fe3e --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/red.ico diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100.svg new file mode 100644 index 00000000000..0b91c8539d2 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100_h100.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100_h100.svg new file mode 100644 index 00000000000..f094372ec6a --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100_h100.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" height="100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100_r1-1.svg b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100_r1-1.svg new file mode 100644 index 00000000000..5d44b4ffa01 --- /dev/null +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/support/w100_r1-1.svg @@ -0,0 +1,2 @@ +<svg xmlns="http://www.w3.org/2000/svg" style="background: green" width="100" viewBox="0 0 100 100"> +<g xmlns:html="http://www.w3.org/1999/xhtml" id="testmeta"><html:link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"/></g></svg>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/toc.xht b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/toc.xht index 6500058064e..38013ab3619 100644 --- a/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/toc.xht +++ b/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/toc.xht @@ -32,7 +32,7 @@ <tbody id="s3"> <tr><th><a href="chapter-3.xht">Chapter 3 - Box Model addition</a></th> - <td>(13 Tests)</td></tr> + <td>(10 Tests)</td></tr> </tbody> <tbody id="s4"> <tr><th><a href="chapter-4.xht">Chapter 4 - @@ -47,7 +47,7 @@ <tbody id="s6"> <tr><th><a href="chapter-6.xht">Chapter 6 - Pointing Devices and Keyboards</a></th> - <td>(138 Tests)</td></tr> + <td>(142 Tests)</td></tr> </tbody> <tbody id="sA"> <tr><th><a href="chapter-A.xht">Appendix A - @@ -61,11 +61,16 @@ </tbody> <tbody id="sC"> <tr><th><a href="chapter-C.xht">Appendix C - - Default style sheet additions for HTML</a></th> + Considerations for Security and Privacy</a></th> <td>(0 Tests)</td></tr> </tbody> <tbody id="sD"> <tr><th><a href="chapter-D.xht">Appendix D - + Default style sheet additions for HTML</a></th> + <td>(0 Tests)</td></tr> + </tbody> + <tbody id="sE"> + <tr><th><a href="chapter-E.xht">Appendix E - Test Suite</a></th> <td>(0 Tests)</td></tr> </tbody> |