Update CSS tests to revision d674587d6ae7d2e231d632785559f2613d554eb0

This commit is contained in:
Ms2ger 2015-08-21 17:46:44 +02:00
parent 7c45ff8e05
commit f235d49372
6623 changed files with 267392 additions and 10061 deletions

View file

@ -222,7 +222,7 @@
<tr id="variable-external-font-face-01-2" class="primary ahem">
<td><strong>
<a href="variable-external-font-face-01.htm">variable-external-font-face-01</a></strong></td>
<td><a href="reference/variable-font-face-01-ref.htm">=</a> </td>
<td><a href="reference/variable-external-font-face-01-ref.htm">=</a> </td>
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr></td>
<td>Test the invalid declaration and use of a variable in an @font-face rule within an external CSS.
</td>

View file

@ -686,7 +686,7 @@
<tr id="variable-reference-38-3.2" class="primary">
<td><strong>
<a href="variable-reference-38.htm">variable-reference-38</a></strong></td>
<td><a href="reference/variable-declaration-59-ref.htm">=</a> </td>
<td><a href="reference/variable-reference-38-ref.htm">=</a> </td>
<td></td>
<td>Test using variables in overlapping shorthands.
</td>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
--><html><head><title>CSS Reftest Reference</title>
<link href="mailto:cam@mcc.id.au" rel="author" title="Cameron McCormack">
<link href="support/ahem.css" type="text/css" rel="stylesheet">
<meta content="ahem" name="flags">
</head><body><p>This text must not be in Ahem.</p>
<p style="font-family: Ahem">But this text must be in Ahem.</p>
</body></html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
--><html><head><title>CSS Reftest Reference</title>
<link href="mailto:cam@mcc.id.au" rel="author" title="Cameron McCormack">
<style>
p { padding-left: 1em; }
#a { border-left: black dotted; }
#b { border-left: black solid; }
</style>
</head><body><p id="a">The left border must be dotted.</p>
<p id="b">The left border must be solid.</p>
</body></html>

View file

@ -524,7 +524,7 @@
<tr>
<td rowspan="1" title="Test the invalid declaration and use of a variable in an @font-face rule within an external CSS.">
<a href="variable-external-font-face-01.htm">variable-external-font-face-01</a></td>
<td><a href="reference/variable-font-face-01-ref.htm">=</a> </td>
<td><a href="reference/variable-external-font-face-01-ref.htm">=</a> </td>
<td rowspan="1"><abbr class="ahem" title="Requires Ahem font">Ahem</abbr></td>
</tr>
</tbody>
@ -860,7 +860,7 @@
<tr>
<td rowspan="1" title="Test using variables in overlapping shorthands.">
<a href="variable-reference-38.htm">variable-reference-38</a></td>
<td><a href="reference/variable-declaration-59-ref.htm">=</a> </td>
<td><a href="reference/variable-reference-38-ref.htm">=</a> </td>
<td rowspan="1"></td>
</tr>
</tbody>

View file

@ -61,7 +61,7 @@ variable-declaration-58.htm == support/color-green-ref.htm
variable-declaration-59.htm == support/color-green-ref.htm
variable-declaration-60.htm == support/color-green-ref.htm
variable-external-declaration-01.htm == support/color-green-ref.htm
variable-external-font-face-01.htm == reference/variable-font-face-01-ref.htm
variable-external-font-face-01.htm == reference/variable-external-font-face-01-ref.htm
variable-external-reference-01.htm == support/color-green-ref.htm
variable-external-supports-01.htm == support/color-green-ref.htm
variable-font-face-01.htm == reference/variable-font-face-01-ref.htm
@ -103,7 +103,7 @@ variable-reference-34.htm == support/color-green-ref.htm
variable-reference-35.htm == support/color-green-ref.htm
variable-reference-36.htm == reference/variable-reference-36-ref.htm
variable-reference-37.htm == reference/variable-reference-37-ref.htm
variable-reference-38.htm == reference/variable-declaration-59-ref.htm
variable-reference-38.htm == reference/variable-reference-38-ref.htm
variable-reference-39.htm == support/color-green-ref.htm
variable-reference-40.htm == reference/variable-reference-40-ref.htm
variable-supports-01.htm == support/color-green-ref.htm

View file

@ -5,7 +5,7 @@
--><html><head><title>CSS Test: Test the invalid declaration and use of a variable in an @font-face rule within an external CSS.</title>
<link href="mailto:mihaela.velimiroviciu@softvisioninc.eu" rel="author" title="Mihaela Velimiroviciu">
<link href="http://www.w3.org/TR/css-variables-1/#defining-variables" rel="help">
<link href="reference/variable-font-face-01-ref.htm" rel="match">
<link href="reference/variable-external-font-face-01-ref.htm" rel="match">
<link href="support/external-variable-font-face.css" type="text/css" rel="stylesheet">
<meta content="ahem" name="flags">
</head><body><p id="a">This text must not be in Ahem.</p>

View file

@ -5,7 +5,7 @@
--><html><head><title>CSS Test: Test using variables in overlapping shorthands.</title>
<link href="mailto:cam@mcc.id.au" rel="author" title="Cameron McCormack">
<link href="http://www.w3.org/TR/css-variables-1/#variables-in-shorthands" rel="help">
<link href="reference/variable-declaration-59-ref.htm" rel="match">
<link href="reference/variable-reference-38-ref.htm" rel="match">
<style>
p { padding-left: 1em; }
#a { --style: solid; --left: black dotted; border-style: var(--style); border-left: var(--left); border-top: none; border-right: none; border-bottom: none; }