mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
Update CSS tests to revision 09d27d61d637da536af1d86a8d7bea157592ff9e
This commit is contained in:
@@ -113,7 +113,7 @@
|
||||
<tr id="selectors-001-5.1" class="primary">
|
||||
<td><strong>
|
||||
<a href="selectors-001.xht">selectors-001</a></strong></td>
|
||||
<td></td>
|
||||
<td><a href="reference/selectors-001-ref.xht">=</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.xht">selectors-002</a></strong></td>
|
||||
<td></td>
|
||||
<td><a href="reference/selectors-002-ref.xht">=</a> </td>
|
||||
<td></td>
|
||||
<td>CSS Selectors (basic tests)
|
||||
</td>
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<!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 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>
|
||||
@@ -0,0 +1,16 @@
|
||||
<!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 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>
|
||||
@@ -43463,6 +43463,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.xht">selectors-001</a></td>
|
||||
<td><a href="reference/selectors-001-ref.xht">=</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.xht">selectors-002</a></td>
|
||||
<td><a href="reference/selectors-002-ref.xht">=</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">
|
||||
|
||||
@@ -5442,6 +5442,8 @@ run-in-text-between-002.xht == reference/run-in-text-ref.xht
|
||||
run-in-text-between-003.xht == reference/run-in-text-ref.xht
|
||||
run-in-text-between-004.xht == reference/run-in-basic-ref.xht
|
||||
run-in-text-between-005.xht == reference/run-in-basic-ref.xht
|
||||
selectors-001.xht == reference/selectors-001-ref.xht
|
||||
selectors-002.xht == reference/selectors-002-ref.xht
|
||||
selectors-parsing-001.xht == reference/selectors-parsing-001-ref.xht
|
||||
separated-border-model-003a.xht == reference/ref-filled-green-100px-square.xht
|
||||
separated-border-model-003b.xht == reference/separated-border-model-003b-ref.xht
|
||||
|
||||
@@ -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.xht" />
|
||||
<style type="text/css">
|
||||
body * { background: red; color: yellow; margin: 1em 0; font: inherit; display: block; }
|
||||
p { background: green; color: white; }
|
||||
|
||||
@@ -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.xht" />
|
||||
<style type="text/css">
|
||||
* { color: white ! important; background: green ! important; }
|
||||
p { color: yellow; background: red; }
|
||||
|
||||
Reference in New Issue
Block a user