aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-ui-3_dev
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2015-09-04 12:21:22 +0200
committerMs2ger <Ms2ger@gmail.com>2015-09-04 16:52:07 +0200
commit58b5cd27de78c21c1b8ab1accda8d027fad70aaa (patch)
treee6160341e1da899806ed5cafc0dfe9d4c1733ac0 /tests/wpt/css-tests/css-ui-3_dev
parent8d21a7924676454d954a3e649bb649d46968b5d3 (diff)
downloadservo-58b5cd27de78c21c1b8ab1accda8d027fad70aaa.tar.gz
servo-58b5cd27de78c21c1b8ab1accda8d027fad70aaa.zip
Update CSS tests to revision 584b6cdd10401df603bd7bdf4ec801fcddc65468
Diffstat (limited to 'tests/wpt/css-tests/css-ui-3_dev')
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/html/chapter-6.htm15
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/html/select-cursor-001-manual.htm39
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/html/toc.htm2
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/implementation-report-TEMPLATE.data1
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/index.htm1
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/index.xht1
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/testinfo.data1
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/xhtml1/chapter-6.xht4
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/xhtml1/toc.xht2
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/xhtml1print/chapter-6.xht4
-rw-r--r--tests/wpt/css-tests/css-ui-3_dev/xhtml1print/toc.xht2
11 files changed, 63 insertions, 9 deletions
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 633e7446e8e..05d79bb4627 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 (144 tests)</h2>
+ <h2>Pointing Devices and Keyboards (145 tests)</h2>
<table width="100%">
<col id="test-column">
<col id="refs-column">
@@ -43,7 +43,7 @@
<tr><th colspan="4" scope="rowgroup">
<a href="#s6.1.1">+</a>
<a href="http://www.w3.org/TR/css3-ui/#cursor">6.1.1 cursor property</a></th></tr>
- <!-- 56 tests -->
+ <!-- 57 tests -->
<tr id="cursor-image-001-6.1.1" class="primary image interact">
<td><strong>
<a href="cursor-image-001.htm">cursor-image-001</a></strong></td>
@@ -660,6 +660,17 @@
</ul>
</td>
</tr>
+ <tr id="select-cursor-001-manual-6.1.1" class="primary HTMLonly interact">
+ <td><strong>
+ <a href="select-cursor-001-manual.htm">select-cursor-001-manual</a></strong></td>
+ <td></td>
+ <td><abbr class="interact" title="Requires user interaction">Interact</abbr></td>
+ <td>cursor property and select element
+ <ul class="assert">
+ <li>Hovering the pointer over a select menu on top of an element with a cursor set should not display said cursor</li>
+ </ul>
+ </td>
+ </tr>
</tbody>
<tbody id="s6.1.1.#example-4a59cfe4">
<!-- 0 tests -->
diff --git a/tests/wpt/css-tests/css-ui-3_dev/html/select-cursor-001-manual.htm b/tests/wpt/css-tests/css-ui-3_dev/html/select-cursor-001-manual.htm
new file mode 100644
index 00000000000..b1d968a3a8d
--- /dev/null
+++ b/tests/wpt/css-tests/css-ui-3_dev/html/select-cursor-001-manual.htm
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html><head>
+ <meta charset="utf-8">
+ <title>CSS Test (User Interface): cursor property and select element</title>
+ <link href="http://chrisrebert.com" rel="author" title="Chris Rebert">
+ <link href="https://drafts.csswg.org/css-ui-3/#cursor" rel="help">
+ <link href="https://drafts.csswg.org/css2/ui.html#cursor-props" rel="help">
+ <meta content="HTMLonly interact" name="flags">
+ <meta content="Hovering the pointer over a select menu on top of an element with a cursor set should not display said cursor" name="assert">
+ <style>
+div {
+ cursor: help;
+ height: 200px;
+ width: 200px;
+ background-color: blue;
+}
+ </style>
+</head>
+<body>
+ <ol>
+ <li>If clicking a &lt;select&gt; opens a native widget which is modal, then SKIP this test.</li>
+ <li>Click on the &lt;select&gt; below. A selection widget appears.</li>
+ <li>Move the pointer so that it is hovering within the intersection area of the selection widget and the blue box below.</li>
+ <li>If the "help" cursor is displayed, then the test result is FAILED. Otherwise, it is PASSED.</li>
+ </ol>
+ <select>
+ <option>AAAAAAAA</option>
+ <option>BBBBBBBB</option>
+ <option>CCCCCCCC</option>
+ <option>DDDDDDDD</option>
+ <option>EEEEEEEE</option>
+ <option>FFFFFFFF</option>
+ <option>GGGGGGGG</option>
+ <option>HHHHHHHH</option>
+ </select>
+ <div></div>
+
+
+</body></html> \ 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 1d6e4af4e16..6f851b3ab28 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
@@ -47,7 +47,7 @@
<tbody id="s6">
<tr><th><a href="chapter-6.htm">Chapter 6 -
Pointing Devices and Keyboards</a></th>
- <td>(144 Tests)</td></tr>
+ <td>(145 Tests)</td></tr>
</tbody>
<tbody id="sA">
<tr><th><a href="chapter-A.htm">Appendix A -
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 44be0ceb438..bb19fbadc6b 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
@@ -393,6 +393,7 @@ html/resize-006.htm d65e14169ca073207b43fe4145e83c831b77a067 ?
xhtml1/resize-006.xht d65e14169ca073207b43fe4145e83c831b77a067 ?
html/resize-007.htm c0e4494f6e70369f227ec265ff2c14fb29323e66 ?
xhtml1/resize-007.xht c0e4494f6e70369f227ec265ff2c14fb29323e66 ?
+html/select-cursor-001-manual.htm a28f3026bed183a42b3255b9e8983a9b0addbdec ?
html/text-overflow-001.htm 18b85a5682895eec2a93d551dbe9d88d014f65b3 ?
xhtml1/text-overflow-001.xht 18b85a5682895eec2a93d551dbe9d88d014f65b3 ?
html/text-overflow-002.htm 9f4f4eae59abbf039c8743708235481c12751585 ?
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 2055f007c9e..8486ca5767f 100644
--- a/tests/wpt/css-tests/css-ui-3_dev/index.htm
+++ b/tests/wpt/css-tests/css-ui-3_dev/index.htm
@@ -132,6 +132,7 @@
<p>Many thanks to the following for their contributions:</p>
<ul>
<li>Chris Lilley</li>
+ <li>Chris Rebert</li>
<li>Daniel Glazman</li>
<li>Elika J. Etemad</li>
<li>Florian Rivoal</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 e153b7338c3..cb85387fb56 100644
--- a/tests/wpt/css-tests/css-ui-3_dev/index.xht
+++ b/tests/wpt/css-tests/css-ui-3_dev/index.xht
@@ -132,6 +132,7 @@
<p>Many thanks to the following for their contributions:</p>
<ul>
<li>Chris Lilley</li>
+ <li>Chris Rebert</li>
<li>Daniel Glazman</li>
<li>Elika J. Etemad</li>
<li>Florian Rivoal</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 bb6b66bcd29..29642183e88 100644
--- a/tests/wpt/css-tests/css-ui-3_dev/testinfo.data
+++ b/tests/wpt/css-tests/css-ui-3_dev/testinfo.data
@@ -194,6 +194,7 @@ resize-004 resize initial value - none interact http://www.w3.org/TR/css3-ui/#r
resize-005 resize - none - neither width nor height can be adjusted interact http://www.w3.org/TR/css3-ui/#resize f868c41121e13b1963ac424f41bd7709c0d77f82 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that neither the width nor the height can be adjusted when resize set none
resize-006 resize - vertical - only the height can be adjusted interact http://www.w3.org/TR/css3-ui/#resize d65e14169ca073207b43fe4145e83c831b77a067 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that only the height can be adjusted when resize set vertical
resize-007 resize - invalid without overflow property interact http://www.w3.org/TR/css3-ui/#resize c0e4494f6e70369f227ec265ff2c14fb29323e66 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that resize property is invalid without overflow property
+select-cursor-001-manual cursor property and select element HTMLonly,interact https://drafts.csswg.org/css-ui-3/#cursor,https://drafts.csswg.org/css2/ui.html#cursor-props a28f3026bed183a42b3255b9e8983a9b0addbdec `Chris Rebert`<http://chrisrebert.com> Hovering the pointer over a select menu on top of an element with a cursor set should not display said cursor
text-overflow-001 reference/text-overflow-001-ref text-overflow - clip - the text inline content overflows will be broken http://www.w3.org/TR/css3-ui/#text-overflow 18b85a5682895eec2a93d551dbe9d88d014f65b3 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the inline content that overflows will be clipped. Characters may be only partially rendered when text-overflow set clip
text-overflow-002 reference/text-overflow-002-ref text-overflow - ellipsis - the broken textual content instead of ellipsis http://www.w3.org/TR/css3-ui/#text-overflow 9f4f4eae59abbf039c8743708235481c12751585 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that an ellipsis (...) is shown instead of overflowing textual content
text-overflow-003 reference/text-overflow-001-ref text-overflow - inherit - inherit clip value of parent's text-overflow property http://www.w3.org/TR/css3-ui/#text-overflow dac3b5119c015760b3e5eb87122680eca10725c0 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that text-overflow inherits the parent' clip value when text-overflow set inherit
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 9655761749d..3f33ab97efc 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 (144 tests)</h2>
+ <h2>Pointing Devices and Keyboards (145 tests)</h2>
<table width="100%">
<col id="test-column"></col>
<col id="refs-column"></col>
@@ -43,7 +43,7 @@
<tr><th colspan="4" scope="rowgroup">
<a href="#s6.1.1">+</a>
<a href="http://www.w3.org/TR/css3-ui/#cursor">6.1.1 cursor property</a></th></tr>
- <!-- 56 tests -->
+ <!-- 57 tests -->
<tr id="cursor-image-001-6.1.1" class="primary image interact">
<td><strong>
<a href="cursor-image-001.xht">cursor-image-001</a></strong></td>
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 82d2780e785..de919d3e7be 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
@@ -47,7 +47,7 @@
<tbody id="s6">
<tr><th><a href="chapter-6.xht">Chapter 6 -
Pointing Devices and Keyboards</a></th>
- <td>(144 Tests)</td></tr>
+ <td>(145 Tests)</td></tr>
</tbody>
<tbody id="sA">
<tr><th><a href="chapter-A.xht">Appendix A -
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 9655761749d..3f33ab97efc 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 (144 tests)</h2>
+ <h2>Pointing Devices and Keyboards (145 tests)</h2>
<table width="100%">
<col id="test-column"></col>
<col id="refs-column"></col>
@@ -43,7 +43,7 @@
<tr><th colspan="4" scope="rowgroup">
<a href="#s6.1.1">+</a>
<a href="http://www.w3.org/TR/css3-ui/#cursor">6.1.1 cursor property</a></th></tr>
- <!-- 56 tests -->
+ <!-- 57 tests -->
<tr id="cursor-image-001-6.1.1" class="primary image interact">
<td><strong>
<a href="cursor-image-001.xht">cursor-image-001</a></strong></td>
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 82d2780e785..de919d3e7be 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
@@ -47,7 +47,7 @@
<tbody id="s6">
<tr><th><a href="chapter-6.xht">Chapter 6 -
Pointing Devices and Keyboards</a></th>
- <td>(144 Tests)</td></tr>
+ <td>(145 Tests)</td></tr>
</tbody>
<tbody id="sA">
<tr><th><a href="chapter-A.xht">Appendix A -