Update CSS tests to revision 09d27d61d637da536af1d86a8d7bea157592ff9e

This commit is contained in:
Simon Sapin
2015-09-08 11:01:17 +02:00
parent 282f9ade93
commit 5abfa12a4c
234 changed files with 4896 additions and 498 deletions

View File

@@ -113,7 +113,7 @@
<tr id="selectors-001-5.1" class="primary">
<td><strong>
<a href="selectors-001.htm">selectors-001</a></strong></td>
<td></td>
<td><a href="reference/selectors-001-ref.htm">=</a> </td>
<td></td>
<td>CSS Selectors (basic)
</td>
@@ -268,7 +268,7 @@
<tr id="selectors-002-5.4" class="primary">
<td><strong>
<a href="selectors-002.htm">selectors-002</a></strong></td>
<td></td>
<td><a href="reference/selectors-002-ref.htm">=</a> </td>
<td></td>
<td>CSS Selectors (basic tests)
</td>

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
<style type="text/css">
body * {
margin: 1em 0;
font: inherit;
display: block;
color: white;
background: green;
}
</style>
</head>
<body>
<p>This text should be green. (element)</p>
<div>This text should be green. (class)</div>
<div>This text should be green. (id)</div>
<div>This text should be green. (child)</div>
<div>This text should be green. (descendant)</div>
<blockquote>This text should be green. (sibling)</blockquote>
<div>This text should be green. (attribute)</div>
</body>
</html>

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
<style type="text/css">
html {
color: white;
background: green;
}
</style>
</head>
<body>
<p>This page should be green with no red present.</p>
</body>
</html>

View File

@@ -43119,6 +43119,22 @@
<td rowspan="1"><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr></td>
</tr>
</tbody>
<tbody id="selectors-001" class="">
<tr>
<td rowspan="1" title="CSS Selectors (basic)">
<a href="selectors-001.htm">selectors-001</a></td>
<td><a href="reference/selectors-001-ref.htm">=</a> </td>
<td rowspan="1"></td>
</tr>
</tbody>
<tbody id="selectors-002" class="">
<tr>
<td rowspan="1" title="CSS Selectors (basic tests)">
<a href="selectors-002.htm">selectors-002</a></td>
<td><a href="reference/selectors-002-ref.htm">=</a> </td>
<td rowspan="1"></td>
</tr>
</tbody>
<tbody id="selectors-parsing-001" class="">
<tr>
<td rowspan="1" title="CSS: Selector Parsing and Invalid Pseudo-Elements">

View File

@@ -5442,6 +5442,8 @@ run-in-text-between-002.htm == reference/run-in-text-ref.htm
run-in-text-between-003.htm == reference/run-in-text-ref.htm
run-in-text-between-004.htm == reference/run-in-basic-ref.htm
run-in-text-between-005.htm == reference/run-in-basic-ref.htm
selectors-001.htm == reference/selectors-001-ref.htm
selectors-002.htm == reference/selectors-002-ref.htm
selectors-parsing-001.htm == reference/selectors-parsing-001-ref.htm
separated-border-model-003a.htm == reference/ref-filled-green-100px-square.htm
separated-border-model-003b.htm == reference/separated-border-model-003b-ref.htm

View File

@@ -5,6 +5,7 @@
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/selectors/001.html" type="text/html">
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#pattern-matching">
<link rel="match" href="reference/selectors-001-ref.htm">
<style type="text/css">
body * { background: red; color: yellow; margin: 1em 0; font: inherit; display: block; }
p { background: green; color: white; }

View File

@@ -5,6 +5,7 @@
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/selectors/002.html" type="text/html">
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#type-selectors">
<link rel="match" href="reference/selectors-002-ref.htm">
<style type="text/css">
* { color: white ! important; background: green ! important; }
p { color: yellow; background: red; }