mirror of
https://github.com/servo/servo.git
synced 2025-08-13 01:15:34 +01:00
Update CSS tests to revision 939546644b4d333218fd9c2c0f68c60752ff1e95
This commit is contained in:
parent
b26fac3f78
commit
0ad6e78b23
435 changed files with 7534 additions and 3290 deletions
|
@ -3250,7 +3250,7 @@
|
|||
<tr id="font-size-adjust-007-3.6" class="primary ahem invalid">
|
||||
<td><strong>
|
||||
<a href="font-size-adjust-007.htm">font-size-adjust-007</a></strong></td>
|
||||
<td><a href="reference/ref-if-there-is-no-red.htm">=</a> </td>
|
||||
<td><a href="reference/ref-filled-green-100px-square.htm">=</a> </td>
|
||||
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="invalid" title="Tests invalid CSS">Invalid</abbr></td>
|
||||
<td>font-size-adjust - 'auto' value is ignored
|
||||
<ul class="assert">
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
div#zero-value-test
|
||||
{
|
||||
color: red;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
div#test-percent-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: 50%;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop" title="3.6 Relative sizing: the font-size-adjust property">
|
||||
<link rel="bookmark" href="https://lists.w3.org/Archives/Public/www-style/2015Mar/0282.html" title="[css-fonts] What does font-size-adjust for '0' look like?">
|
||||
<link rel="match" href="reference/ref-if-there-is-no-red.htm">
|
||||
<link rel="match" href="reference/ref-filled-green-100px-square.htm">
|
||||
|
||||
<meta content="ahem invalid" name="flags">
|
||||
<meta content="This test checks that 'auto' does not apply to font-size-adjust and therefore must be ignored." name="assert">
|
||||
|
@ -17,7 +17,7 @@
|
|||
div#test-auto-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: auto;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
div#test-negative-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: -0.5;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
<!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="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<style type="text/css">
|
||||
div
|
||||
{
|
||||
background-color: green;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
||||
|
||||
<div></div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1012,7 +1012,7 @@
|
|||
<tr>
|
||||
<td rowspan="1" title="font-size-adjust - 'auto' value is ignored">
|
||||
<a href="font-size-adjust-007.htm">font-size-adjust-007</a></td>
|
||||
<td><a href="reference/ref-if-there-is-no-red.htm">=</a> </td>
|
||||
<td><a href="reference/ref-filled-green-100px-square.htm">=</a> </td>
|
||||
<td rowspan="1"><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="invalid" title="Tests invalid CSS">Invalid</abbr></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -122,7 +122,7 @@ font-size-122.htm == reference/font-size-122-ref.htm
|
|||
font-size-123.htm == reference/font-size-123-ref.htm
|
||||
font-size-adjust-005.htm == reference/ref-if-there-is-no-red.htm
|
||||
font-size-adjust-006.htm == reference/ref-filled-green-100px-square.htm
|
||||
font-size-adjust-007.htm == reference/ref-if-there-is-no-red.htm
|
||||
font-size-adjust-007.htm == reference/ref-filled-green-100px-square.htm
|
||||
font-size-adjust-008.htm == reference/ref-filled-green-100px-square.htm
|
||||
font-size-applies-to-016.htm == reference/no-red-on-blank-page-ref.htm
|
||||
font-style-applies-to-001.htm == reference/font-style-applies-to-001-ref.htm
|
||||
|
|
|
@ -547,14 +547,14 @@ html/font-size-adjust-002.htm e23b1613f315bb08db2dd889eea82327952536f6 ?
|
|||
xhtml1/font-size-adjust-002.xht e23b1613f315bb08db2dd889eea82327952536f6 ?
|
||||
html/font-size-adjust-003.htm 76bdd71fdd1aef6fb668dbe98db2fe362e10cdb4 ?
|
||||
xhtml1/font-size-adjust-003.xht 76bdd71fdd1aef6fb668dbe98db2fe362e10cdb4 ?
|
||||
html/font-size-adjust-005.htm c361d896c578739e5e4156b5719e61078bb20f64 ?
|
||||
xhtml1/font-size-adjust-005.xht c361d896c578739e5e4156b5719e61078bb20f64 ?
|
||||
html/font-size-adjust-006.htm e79aabc31e4259a2e1fc2ab86cc67661dbd62d52 ?
|
||||
xhtml1/font-size-adjust-006.xht e79aabc31e4259a2e1fc2ab86cc67661dbd62d52 ?
|
||||
html/font-size-adjust-007.htm 82940e561311c597d72c9eb0ed4895d782e1db9b ?
|
||||
xhtml1/font-size-adjust-007.xht 82940e561311c597d72c9eb0ed4895d782e1db9b ?
|
||||
html/font-size-adjust-008.htm a04f6a4f97ac33c54ef6cf477de640c8cba97693 ?
|
||||
xhtml1/font-size-adjust-008.xht a04f6a4f97ac33c54ef6cf477de640c8cba97693 ?
|
||||
html/font-size-adjust-005.htm e9cb807e44ec0adf5b74f551e5ff98acd60bb063 ?
|
||||
xhtml1/font-size-adjust-005.xht e9cb807e44ec0adf5b74f551e5ff98acd60bb063 ?
|
||||
html/font-size-adjust-006.htm 1894632878d4019736b3cfcc10f5da924684e83a ?
|
||||
xhtml1/font-size-adjust-006.xht 1894632878d4019736b3cfcc10f5da924684e83a ?
|
||||
html/font-size-adjust-007.htm 8b16c67ce336bd9896168ed9e52c8ff34248ac26 ?
|
||||
xhtml1/font-size-adjust-007.xht 8b16c67ce336bd9896168ed9e52c8ff34248ac26 ?
|
||||
html/font-size-adjust-008.htm 2d06d0aeab15dcf7e0f5ebdaeda1c9c4f6ab8fb6 ?
|
||||
xhtml1/font-size-adjust-008.xht 2d06d0aeab15dcf7e0f5ebdaeda1c9c4f6ab8fb6 ?
|
||||
html/font-size-applies-to-001.htm fbc00023abeebe442c9719bfc2530c367045ad7c ?
|
||||
xhtml1/font-size-applies-to-001.xht fbc00023abeebe442c9719bfc2530c367045ad7c ?
|
||||
html/font-size-applies-to-002.htm 8994461fab45e1672a00ecfc2d88ba252286a795 ?
|
||||
|
|
|
@ -271,10 +271,10 @@ font-size-123 reference/font-size-123-ref CSS Parsing: Negative Font-Size invali
|
|||
font-size-adjust-001 font-size-adjust - greater than aspect value of font Ahem http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop 46f5fd861c048d4b7623e050749230b0fef45685 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the actual font size is greater than the specified size when the value of font-size-adjust is greater than the aspect value of font
|
||||
font-size-adjust-002 font-size-adjust - less than aspect value of font Ahem http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop e23b1613f315bb08db2dd889eea82327952536f6 `Intel`<http://www.intel.com/>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that the actual font size is less than the specified size when the value of font-size-adjust is less than the aspect value of font
|
||||
font-size-adjust-003 font-size-adjust - first available and installed font font http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop 76bdd71fdd1aef6fb668dbe98db2fe362e10cdb4 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> In this test, span.test's first 3 fallback fonts are unavailable and the next fallback fonts have a relatively big aspect value with regards to each fonts listed, declared in span.reference rule (0.450). This test checks that 'font-size-adjust' property adjusts the relative height of lowercase letters of available, installed fallback fonts listed, declared in span.test rule (0.530-0.545) to match the relative height of lowercase letters of fonts listed, declared in span.reference rule (0.450).
|
||||
font-size-adjust-005 reference/ref-if-there-is-no-red font-size-adjust - 0 value implies a 0px used font-size ahem http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop c361d896c578739e5e4156b5719e61078bb20f64 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that a 0 value implies that used font-size must be 0px.
|
||||
font-size-adjust-006 reference/ref-filled-green-100px-square font-size-adjust - a percentage value is invalid ahem,invalid http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop e79aabc31e4259a2e1fc2ab86cc67661dbd62d52 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that a percentage value is invalid and therefore must be ignored.
|
||||
font-size-adjust-007 reference/ref-if-there-is-no-red font-size-adjust - 'auto' value is ignored ahem,invalid http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop 82940e561311c597d72c9eb0ed4895d782e1db9b `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that 'auto' does not apply to font-size-adjust and therefore must be ignored.
|
||||
font-size-adjust-008 reference/ref-filled-green-100px-square font-size-adjust - a negative value is invalid ahem,invalid http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop a04f6a4f97ac33c54ef6cf477de640c8cba97693 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that a negative value is invalid and therefore must be ignored.
|
||||
font-size-adjust-005 reference/ref-if-there-is-no-red font-size-adjust - 0 value implies a 0px used font-size ahem http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop e9cb807e44ec0adf5b74f551e5ff98acd60bb063 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that a 0 value implies that used font-size must be 0px.
|
||||
font-size-adjust-006 reference/ref-filled-green-100px-square font-size-adjust - a percentage value is invalid ahem,invalid http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop 1894632878d4019736b3cfcc10f5da924684e83a `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that a percentage value is invalid and therefore must be ignored.
|
||||
font-size-adjust-007 reference/ref-filled-green-100px-square font-size-adjust - 'auto' value is ignored ahem,invalid http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop 8b16c67ce336bd9896168ed9e52c8ff34248ac26 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that 'auto' does not apply to font-size-adjust and therefore must be ignored.
|
||||
font-size-adjust-008 reference/ref-filled-green-100px-square font-size-adjust - a negative value is invalid ahem,invalid http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop 2d06d0aeab15dcf7e0f5ebdaeda1c9c4f6ab8fb6 `Gérard Talbot`<http://www.gtalbot.org/BrowserBugsSection/css21testsuite/> This test checks that a negative value is invalid and therefore must be ignored.
|
||||
font-size-applies-to-001 Font-size and 'display: inline' elements ahem http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size,http://www.w3.org/TR/CSS21/fonts.html#font-size-props,http://www.w3.org/TR/css-fonts-3/#font-size-prop fbc00023abeebe442c9719bfc2530c367045ad7c `Microsoft`<http://www.microsoft.com/> The 'font-size' property applies to 'display: inline' elements.
|
||||
font-size-applies-to-002 Font-size and 'display: block' elements ahem http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size,http://www.w3.org/TR/CSS21/fonts.html#font-size-props,http://www.w3.org/TR/css-fonts-3/#font-size-prop 8994461fab45e1672a00ecfc2d88ba252286a795 `Microsoft`<http://www.microsoft.com/> The 'font-size' property applies to 'display: block' elements.
|
||||
font-size-applies-to-003 Font-size and 'display: list-item' elements ahem http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size,http://www.w3.org/TR/CSS21/fonts.html#font-size-props,http://www.w3.org/TR/css-fonts-3/#font-size-prop 7ff24c35c0bc48157db513b72230516e9bf37e86 `Microsoft`<http://www.microsoft.com/> The 'font-size' property applies to 'display: list-item' elements.
|
||||
|
|
|
@ -3250,7 +3250,7 @@
|
|||
<tr id="font-size-adjust-007-3.6" class="primary ahem invalid">
|
||||
<td><strong>
|
||||
<a href="font-size-adjust-007.xht">font-size-adjust-007</a></strong></td>
|
||||
<td><a href="reference/ref-if-there-is-no-red.xht">=</a> </td>
|
||||
<td><a href="reference/ref-filled-green-100px-square.xht">=</a> </td>
|
||||
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="invalid" title="Tests invalid CSS">Invalid</abbr></td>
|
||||
<td>font-size-adjust - 'auto' value is ignored
|
||||
<ul class="assert">
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
div#zero-value-test
|
||||
{
|
||||
color: red;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: 0;
|
||||
}
|
||||
]]></style>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
div#test-percent-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: 50%;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
||||
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop" title="3.6 Relative sizing: the font-size-adjust property" />
|
||||
<link rel="bookmark" href="https://lists.w3.org/Archives/Public/www-style/2015Mar/0282.html" title="[css-fonts] What does font-size-adjust for '0' look like?" />
|
||||
<link rel="match" href="reference/ref-if-there-is-no-red.xht" />
|
||||
<link rel="match" href="reference/ref-filled-green-100px-square.xht" />
|
||||
|
||||
<meta content="ahem invalid" name="flags" />
|
||||
<meta content="This test checks that 'auto' does not apply to font-size-adjust and therefore must be ignored." name="assert" />
|
||||
|
@ -17,7 +17,7 @@
|
|||
div#test-auto-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: auto;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
div#test-negative-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: -0.5;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
<!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="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
||||
|
||||
<style type="text/css"><![CDATA[
|
||||
div
|
||||
{
|
||||
background-color: green;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
]]></style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
||||
|
||||
<div></div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1012,7 +1012,7 @@
|
|||
<tr>
|
||||
<td rowspan="1" title="font-size-adjust - 'auto' value is ignored">
|
||||
<a href="font-size-adjust-007.xht">font-size-adjust-007</a></td>
|
||||
<td><a href="reference/ref-if-there-is-no-red.xht">=</a> </td>
|
||||
<td><a href="reference/ref-filled-green-100px-square.xht">=</a> </td>
|
||||
<td rowspan="1"><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="invalid" title="Tests invalid CSS">Invalid</abbr></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -122,7 +122,7 @@ font-size-122.xht == reference/font-size-122-ref.xht
|
|||
font-size-123.xht == reference/font-size-123-ref.xht
|
||||
font-size-adjust-005.xht == reference/ref-if-there-is-no-red.xht
|
||||
font-size-adjust-006.xht == reference/ref-filled-green-100px-square.xht
|
||||
font-size-adjust-007.xht == reference/ref-if-there-is-no-red.xht
|
||||
font-size-adjust-007.xht == reference/ref-filled-green-100px-square.xht
|
||||
font-size-adjust-008.xht == reference/ref-filled-green-100px-square.xht
|
||||
font-size-applies-to-016.xht == reference/no-red-on-blank-page-ref.xht
|
||||
font-style-applies-to-001.xht == reference/font-style-applies-to-001-ref.xht
|
||||
|
|
|
@ -3250,7 +3250,7 @@
|
|||
<tr id="font-size-adjust-007-3.6" class="primary ahem invalid">
|
||||
<td><strong>
|
||||
<a href="font-size-adjust-007.xht">font-size-adjust-007</a></strong></td>
|
||||
<td><a href="reference/ref-if-there-is-no-red.xht">=</a> </td>
|
||||
<td><a href="reference/ref-filled-green-100px-square.xht">=</a> </td>
|
||||
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="invalid" title="Tests invalid CSS">Invalid</abbr></td>
|
||||
<td>font-size-adjust - 'auto' value is ignored
|
||||
<ul class="assert">
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
div#zero-value-test
|
||||
{
|
||||
color: red;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: 0;
|
||||
}
|
||||
]]></style>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
div#test-percent-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: 50%;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
||||
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop" title="3.6 Relative sizing: the font-size-adjust property" />
|
||||
<link rel="bookmark" href="https://lists.w3.org/Archives/Public/www-style/2015Mar/0282.html" title="[css-fonts] What does font-size-adjust for '0' look like?" />
|
||||
<link rel="match" href="reference/ref-if-there-is-no-red.xht" />
|
||||
<link rel="match" href="reference/ref-filled-green-100px-square.xht" />
|
||||
|
||||
<meta content="ahem invalid" name="flags" />
|
||||
<meta content="This test checks that 'auto' does not apply to font-size-adjust and therefore must be ignored." name="assert" />
|
||||
|
@ -26,7 +26,7 @@
|
|||
div#test-auto-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: auto;
|
||||
}
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
div#test-negative-value
|
||||
{
|
||||
color: green;
|
||||
font: 6.25em/1 Ahem; /* computes to 100px/100px */
|
||||
font: 100px/1 Ahem; /* computes to 100px/100px */
|
||||
font-size-adjust: -0.5;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
<!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>
|
||||
<style type="text/css">
|
||||
@page { font: italic 8pt sans-serif; color: gray;
|
||||
margin: 7%;
|
||||
counter-increment: page;
|
||||
@top-left { content: "CSS Fonts Module Level 3 CR Test Suite"; }
|
||||
@top-right { content: "Test ref-filled-green-100px-square"; }
|
||||
@bottom-right { content: counter(page); }
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
||||
|
||||
<style type="text/css"><![CDATA[
|
||||
div
|
||||
{
|
||||
background-color: green;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
]]></style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
||||
|
||||
<div></div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1012,7 +1012,7 @@
|
|||
<tr>
|
||||
<td rowspan="1" title="font-size-adjust - 'auto' value is ignored">
|
||||
<a href="font-size-adjust-007.xht">font-size-adjust-007</a></td>
|
||||
<td><a href="reference/ref-if-there-is-no-red.xht">=</a> </td>
|
||||
<td><a href="reference/ref-filled-green-100px-square.xht">=</a> </td>
|
||||
<td rowspan="1"><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="invalid" title="Tests invalid CSS">Invalid</abbr></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -122,7 +122,7 @@ font-size-122.xht == reference/font-size-122-ref.xht
|
|||
font-size-123.xht == reference/font-size-123-ref.xht
|
||||
font-size-adjust-005.xht == reference/ref-if-there-is-no-red.xht
|
||||
font-size-adjust-006.xht == reference/ref-filled-green-100px-square.xht
|
||||
font-size-adjust-007.xht == reference/ref-if-there-is-no-red.xht
|
||||
font-size-adjust-007.xht == reference/ref-filled-green-100px-square.xht
|
||||
font-size-adjust-008.xht == reference/ref-filled-green-100px-square.xht
|
||||
font-size-applies-to-016.xht == reference/no-red-on-blank-page-ref.xht
|
||||
font-style-applies-to-001.xht == reference/font-style-applies-to-001-ref.xht
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue