mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
Update CSS tests to revision aac1cd51245c0c469325988a0446985a2f1e476c
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background">
|
||||
<link rel="match" href="reference/background-body-001-ref.htm">
|
||||
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="Background of the body covers the entire canvas. Adding margin to body element to ensure that canvas background is green, and not just the root since in other cases, margin is not colored. This only applies if HTML element has nothing set for background.">
|
||||
<style type="text/css">
|
||||
body
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<title>CSS Test: Background on body element - background-position</title>
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background">
|
||||
<meta name="flags" content="HTMLonly image">
|
||||
<meta name="flags" content="image">
|
||||
<meta name="assert" content="Background of the body has the initial background-position of 0,0 and not the canvas. This only applies if HTML element has nothing set for background.">
|
||||
<style type="text/css">
|
||||
html
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<title>CSS Test: Background position propagation from body element</title>
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background">
|
||||
<meta name="flags" content="HTMLonly image">
|
||||
<meta name="flags" content="image">
|
||||
<meta name="assert" content="Background-position of the body does not propagate the position to the canvas. This only applies if HTML element has nothing set for background.">
|
||||
<style type="text/css">
|
||||
body
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-04-21 -->
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="Background of the html element is the canvas's background even if body background is set.">
|
||||
<style type="text/css">
|
||||
html
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html><head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
||||
<title>CSS Test: :before/:after pseudo-elements - 'position:fixed'</title>
|
||||
<link href="mailto:james(at)idreamincode.co.uk" rel="author" title="James Hopkins">
|
||||
<link href="http://www.w3.org/TR/CSS21/generate.html#before-after-content" rel="help">
|
||||
<link href="reference/before-after-positioned-002-ref.htm" rel="match">
|
||||
<meta content="Since the restriction on assigning positioning schemes to the :before and :after pseudo elements was lifted in CSS 2.1, this tests whether 'position:fixed' can be correctly applied to both pseudo elements." name="assert">
|
||||
<style type="text/css">
|
||||
#test:after,
|
||||
#test:before{
|
||||
background:blue;
|
||||
bottom:0;
|
||||
content:"";
|
||||
height:100px;
|
||||
position:fixed;
|
||||
right:0;
|
||||
width:50px;
|
||||
}
|
||||
#test:before{
|
||||
bottom:0;
|
||||
right:50px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Test passes if there is a square (four equal sides) at the bottom right of the page.</p>
|
||||
<div id="test"></div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html><head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
||||
<title>CSS Test: :before/:after pseudo-elements - 'position:absolute'</title>
|
||||
<link href="mailto:james(at)idreamincode.co.uk" rel="author" title="James Hopkins">
|
||||
<link href="http://www.w3.org/TR/CSS21/generate.html#before-after-content" rel="help">
|
||||
<link href="reference/before-after-positioned-002-ref.htm" rel="match">
|
||||
<meta content="Since the restriction on assigning positioning schemes to the :before and :after pseudo elements was lifted in CSS 2.1, this tests whether 'position:absolute' can be correctly applied to both pseudo elements." name="assert">
|
||||
<style type="text/css">
|
||||
#test:after,
|
||||
#test:before{
|
||||
background:blue;
|
||||
bottom:0;
|
||||
content:"";
|
||||
height:100px;
|
||||
position:absolute;
|
||||
right:0;
|
||||
width:50px;
|
||||
}
|
||||
#test:before{
|
||||
bottom:0;
|
||||
right:50px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Test passes if there is a square (four equal sides) at the bottom right of the page.</p>
|
||||
<div id="test"></div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html><head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
||||
<title>CSS Test: :before/:after pseudo-elements - 'position:relative'</title>
|
||||
<link href="mailto:james(at)idreamincode.co.uk" rel="author" title="James Hopkins">
|
||||
<link href="http://www.w3.org/TR/CSS21/generate.html#before-after-content" rel="help">
|
||||
<link href="reference/before-after-positioned-004-ref.htm" rel="match">
|
||||
<meta content="Since the restriction on assigning positioning schemes to the :before and :after pseudo elements was lifted in CSS 2.1, this tests whether 'position:relative' can be correctly applied to both pseudo elements." name="assert">
|
||||
<style type="text/css">
|
||||
#test:after,
|
||||
#test:before{
|
||||
background:blue;
|
||||
content:"";
|
||||
display:block;
|
||||
height:100px;
|
||||
left:0;
|
||||
position:relative;
|
||||
top:-100px;
|
||||
width:50px;
|
||||
}
|
||||
#test:before{
|
||||
left:50px;
|
||||
top:0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Test passes if there is a square (four equal sides) below.</p>
|
||||
<div id="test"></div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -13,7 +13,7 @@
|
||||
<body>
|
||||
|
||||
<h1>CSS 2.1 Conformance Test Suite</h1>
|
||||
<h2>Generated content, automatic numbering, and lists (637 tests)</h2>
|
||||
<h2>Generated content, automatic numbering, and lists (640 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="#s12.1">+</a>
|
||||
<a href="https://www.w3.org/TR/CSS21/generate.html#before-after-content">12.1 The :before and :after pseudo-elements</a></th></tr>
|
||||
<!-- 58 tests -->
|
||||
<!-- 61 tests -->
|
||||
<tr id="after-content-display-001-12.1" class="">
|
||||
<td>
|
||||
<a href="after-content-display-001.htm">after-content-display-001</a></td>
|
||||
@@ -321,6 +321,39 @@
|
||||
<td>generated content
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="before-after-positioned-002-12.1" class="">
|
||||
<td>
|
||||
<a href="before-after-positioned-002.htm">before-after-positioned-002</a></td>
|
||||
<td><a href="reference/before-after-positioned-002-ref.htm">=</a> </td>
|
||||
<td></td>
|
||||
<td>:before/:after pseudo-elements - 'position:fixed'
|
||||
<ul class="assert">
|
||||
<li>Since the restriction on assigning positioning schemes to the :before and :after pseudo elements was lifted in CSS 2.1, this tests whether 'position:fixed' can be correctly applied to both pseudo elements.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="before-after-positioned-003-12.1" class="">
|
||||
<td>
|
||||
<a href="before-after-positioned-003.htm">before-after-positioned-003</a></td>
|
||||
<td><a href="reference/before-after-positioned-002-ref.htm">=</a> </td>
|
||||
<td></td>
|
||||
<td>:before/:after pseudo-elements - 'position:absolute'
|
||||
<ul class="assert">
|
||||
<li>Since the restriction on assigning positioning schemes to the :before and :after pseudo elements was lifted in CSS 2.1, this tests whether 'position:absolute' can be correctly applied to both pseudo elements.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="before-after-positioned-004-12.1" class="">
|
||||
<td>
|
||||
<a href="before-after-positioned-004.htm">before-after-positioned-004</a></td>
|
||||
<td><a href="reference/before-after-positioned-004-ref.htm">=</a> </td>
|
||||
<td></td>
|
||||
<td>:before/:after pseudo-elements - 'position:relative'
|
||||
<ul class="assert">
|
||||
<li>Since the restriction on assigning positioning schemes to the :before and :after pseudo elements was lifted in CSS 2.1, this tests whether 'position:relative' can be correctly applied to both pseudo elements.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="before-after-table-parts-001-12.1" class="">
|
||||
<td>
|
||||
<a href="before-after-table-parts-001.htm">before-after-table-parts-001</a></td>
|
||||
@@ -1360,7 +1393,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-066-12.2" class="HTMLonly">
|
||||
<tr id="content-066-12.2" class="">
|
||||
<td>
|
||||
<a href="content-066.htm">content-066</a></td>
|
||||
<td></td>
|
||||
@@ -1481,7 +1514,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-081-12.2" class="HTMLonly">
|
||||
<tr id="content-081-12.2" class="">
|
||||
<td>
|
||||
<a href="content-081.htm">content-081</a></td>
|
||||
<td></td>
|
||||
@@ -1547,7 +1580,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-090-12.2" class="HTMLonly">
|
||||
<tr id="content-090-12.2" class="">
|
||||
<td>
|
||||
<a href="content-090.htm">content-090</a></td>
|
||||
<td></td>
|
||||
@@ -1558,7 +1591,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-091-12.2" class="HTMLonly">
|
||||
<tr id="content-091-12.2" class="">
|
||||
<td>
|
||||
<a href="content-091.htm">content-091</a></td>
|
||||
<td></td>
|
||||
@@ -1998,7 +2031,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-149-12.2" class="HTMLonly">
|
||||
<tr id="content-149-12.2" class="">
|
||||
<td>
|
||||
<a href="content-149.htm">content-149</a></td>
|
||||
<td></td>
|
||||
@@ -2042,7 +2075,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-153-12.2" class="HTMLonly">
|
||||
<tr id="content-153-12.2" class="">
|
||||
<td>
|
||||
<a href="content-153.htm">content-153</a></td>
|
||||
<td></td>
|
||||
@@ -3181,7 +3214,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-066-12.2.#propdef-content" class="HTMLonly">
|
||||
<tr id="content-066-12.2.#propdef-content" class="">
|
||||
<td>
|
||||
<a href="content-066.htm">content-066</a></td>
|
||||
<td></td>
|
||||
@@ -3302,7 +3335,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-081-12.2.#propdef-content" class="HTMLonly">
|
||||
<tr id="content-081-12.2.#propdef-content" class="">
|
||||
<td>
|
||||
<a href="content-081.htm">content-081</a></td>
|
||||
<td></td>
|
||||
@@ -3368,7 +3401,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-090-12.2.#propdef-content" class="HTMLonly">
|
||||
<tr id="content-090-12.2.#propdef-content" class="">
|
||||
<td>
|
||||
<a href="content-090.htm">content-090</a></td>
|
||||
<td></td>
|
||||
@@ -3379,7 +3412,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-091-12.2.#propdef-content" class="HTMLonly">
|
||||
<tr id="content-091-12.2.#propdef-content" class="">
|
||||
<td>
|
||||
<a href="content-091.htm">content-091</a></td>
|
||||
<td></td>
|
||||
@@ -3819,7 +3852,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-149-12.2.#propdef-content" class="HTMLonly">
|
||||
<tr id="content-149-12.2.#propdef-content" class="">
|
||||
<td>
|
||||
<a href="content-149.htm">content-149</a></td>
|
||||
<td></td>
|
||||
@@ -3863,7 +3896,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="content-153-12.2.#propdef-content" class="HTMLonly">
|
||||
<tr id="content-153-12.2.#propdef-content" class="">
|
||||
<td>
|
||||
<a href="content-153.htm">content-153</a></td>
|
||||
<td></td>
|
||||
|
||||
@@ -3784,7 +3784,7 @@
|
||||
<td>Background Position: bottom right and the viewport
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="background-body-001-14.2" class="HTMLonly">
|
||||
<tr id="background-body-001-14.2" class="">
|
||||
<td>
|
||||
<a href="background-body-001.htm">background-body-001</a></td>
|
||||
<td><a href="reference/background-body-001-ref.htm">=</a> </td>
|
||||
@@ -3795,7 +3795,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="background-body-002-14.2" class="HTMLonly image">
|
||||
<tr id="background-body-002-14.2" class="image">
|
||||
<td>
|
||||
<a href="background-body-002.htm">background-body-002</a></td>
|
||||
<td></td>
|
||||
@@ -3806,7 +3806,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="background-body-003-14.2" class="HTMLonly image">
|
||||
<tr id="background-body-003-14.2" class="image">
|
||||
<td>
|
||||
<a href="background-body-003.htm">background-body-003</a></td>
|
||||
<td></td>
|
||||
@@ -9946,7 +9946,7 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="background-html-body-001-14.2.1" class="HTMLonly">
|
||||
<tr id="background-html-body-001-14.2.1" class="">
|
||||
<td>
|
||||
<a href="background-html-body-001.htm">background-html-body-001</a></td>
|
||||
<td></td>
|
||||
|
||||
@@ -7219,14 +7219,14 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="margin-collapse-021-8.3.1" class="HTMLonly ahem image">
|
||||
<tr id="margin-collapse-021-8.3.1" class="ahem image">
|
||||
<td>
|
||||
<a href="margin-collapse-021.htm">margin-collapse-021</a></td>
|
||||
<td><a href="reference/margin-collapse-020-ref.htm">=</a> </td>
|
||||
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr></td>
|
||||
<td>Margin collapsing with the 'body' element
|
||||
<ul class="assert">
|
||||
<li>For HTML pages the 'body' element's margins collapse.</li>
|
||||
<li>The 'body' element's margins collapse.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="The 'content' property correctly handles the 'attr()' function when calling the attribute 'compact'.">
|
||||
<style type="text/css">
|
||||
ul:before
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="The 'content' property properly handles the 'attr()' function when calling the attribute 'height'.">
|
||||
<style type="text/css">
|
||||
td:before
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="The 'content' property properly handles the 'attr()' function when calling the attribute 'language'.">
|
||||
<style type="text/css">
|
||||
script:before
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="The 'content' property properly handles the 'attr()' function when calling the attribute 'link'.">
|
||||
<style type="text/css">
|
||||
body:before
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="The 'content' property properly handles the 'attr()' function when calling the attribute 'valign'.">
|
||||
<style type="text/css">
|
||||
td:before
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content">
|
||||
<meta name="flags" content="HTMLonly">
|
||||
<meta name="assert" content="The 'content' property properly handles the 'attr()' function when calling the attribute 'vlink'.">
|
||||
<style type="text/css">
|
||||
body:before
|
||||
|
||||
@@ -4,11 +4,14 @@
|
||||
<title>CSS Test: Margin collapsing with the 'body' element</title>
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
||||
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-08-15 -->
|
||||
<!--
|
||||
http://lists.w3.org/Archives/Public/public-css-testsuite/2016Apr/0000.html
|
||||
-->
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins">
|
||||
<link rel="match" href="reference/margin-collapse-020-ref.htm">
|
||||
|
||||
<meta name="flags" content="ahem HTMLonly image">
|
||||
<meta name="assert" content="For HTML pages the 'body' element's margins collapse.">
|
||||
<meta name="flags" content="ahem image">
|
||||
<meta name="assert" content="The 'body' element's margins collapse.">
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html><head><title>CSS Reftest Reference</title>
|
||||
<link href="mailto:Ms2ger@gmail.com" rel="author" title="Ms2ger">
|
||||
<style type="text/css">
|
||||
#test {
|
||||
position: absolute;
|
||||
background: blue;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
</style>
|
||||
</head><body><p>Test passes if there is a square (four equal sides) at the bottom right of the page.</p>
|
||||
<div id="test"></div>
|
||||
</body></html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html><head><title>CSS Reftest Reference</title>
|
||||
<link href="mailto:Ms2ger@gmail.com" rel="author" title="Ms2ger">
|
||||
<style type="text/css">
|
||||
#test {
|
||||
background: blue;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
</style>
|
||||
</head><body><p>Test passes if there is a square (four equal sides) below.</p>
|
||||
<div id="test"></div>
|
||||
</body></html>
|
||||
@@ -7,8 +7,6 @@
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<meta content="" name="flags">
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<meta content="" name="flags">
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<meta content="" name="flags">
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<meta content="" name="flags">
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<meta content="" name="flags">
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
||||
|
||||
<meta content="" name="flags">
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
|
||||
@@ -5376,7 +5376,7 @@
|
||||
<td rowspan="1"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="background-body-001" class="HTMLonly">
|
||||
<tbody id="background-body-001" class="">
|
||||
<tr>
|
||||
<td rowspan="1" title="Background on body element">
|
||||
<a href="background-body-001.htm">background-body-001</a></td>
|
||||
@@ -8264,6 +8264,30 @@
|
||||
<td rowspan="1"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="before-after-positioned-002" class="">
|
||||
<tr>
|
||||
<td rowspan="1" title=":before/:after pseudo-elements - 'position:fixed'">
|
||||
<a href="before-after-positioned-002.htm">before-after-positioned-002</a></td>
|
||||
<td><a href="reference/before-after-positioned-002-ref.htm">=</a> </td>
|
||||
<td rowspan="1"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="before-after-positioned-003" class="">
|
||||
<tr>
|
||||
<td rowspan="1" title=":before/:after pseudo-elements - 'position:absolute'">
|
||||
<a href="before-after-positioned-003.htm">before-after-positioned-003</a></td>
|
||||
<td><a href="reference/before-after-positioned-002-ref.htm">=</a> </td>
|
||||
<td rowspan="1"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="before-after-positioned-004" class="">
|
||||
<tr>
|
||||
<td rowspan="1" title=":before/:after pseudo-elements - 'position:relative'">
|
||||
<a href="before-after-positioned-004.htm">before-after-positioned-004</a></td>
|
||||
<td><a href="reference/before-after-positioned-004-ref.htm">=</a> </td>
|
||||
<td rowspan="1"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="before-after-selector-001" class="">
|
||||
<tr>
|
||||
<td rowspan="1" title="After and before pseudo-elements">
|
||||
@@ -37348,7 +37372,7 @@
|
||||
<td rowspan="1"><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="image" title="Requires bitmap graphic support">Bitmaps</abbr></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="margin-collapse-021" class="HTMLonly ahem image">
|
||||
<tbody id="margin-collapse-021" class="ahem image">
|
||||
<tr>
|
||||
<td rowspan="1" title="Margin collapsing with the 'body' element">
|
||||
<a href="margin-collapse-021.htm">margin-collapse-021</a></td>
|
||||
|
||||
@@ -1063,6 +1063,9 @@ before-after-dynamic-restyle-001.htm == reference/before-after-dynamic-restyle-0
|
||||
before-after-floated-001.htm == reference/before-after-floated-001-ref.htm
|
||||
before-after-images-001.htm == reference/before-after-images-001-ref.htm
|
||||
before-after-positioned-001.htm == reference/before-after-positioned-001-ref.htm
|
||||
before-after-positioned-002.htm == reference/before-after-positioned-002-ref.htm
|
||||
before-after-positioned-003.htm == reference/before-after-positioned-002-ref.htm
|
||||
before-after-positioned-004.htm == reference/before-after-positioned-004-ref.htm
|
||||
before-after-selector-001.htm == reference/before-after-selector-001-ref.htm
|
||||
before-after-table-parts-001.htm == reference/before-after-table-parts-001-ref.htm
|
||||
before-after-table-whitespace-001.htm == reference/before-after-table-whitespace-001-ref.htm
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
<tbody id="s12">
|
||||
<tr><th><a href="chapter-12.htm">Chapter 12 -
|
||||
Generated content, automatic numbering, and lists</a></th>
|
||||
<td>(637 Tests)</td></tr>
|
||||
<td>(640 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s13">
|
||||
<tr><th><a href="chapter-13.htm">Chapter 13 -
|
||||
|
||||
Reference in New Issue
Block a user