mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update CSS tests to revision 4e1aa4f3dcbff1abd654c63d0f677379c1e2775f
This commit is contained in:
parent
0f72049363
commit
6bb495338b
1321 changed files with 34875 additions and 7209 deletions
|
@ -16,14 +16,17 @@
|
|||
<meta name="flags" content="image" />
|
||||
<style type="text/css"><![CDATA[
|
||||
div
|
||||
{
|
||||
background-color: yellow;
|
||||
direction: ltr;
|
||||
font: 20px/1 Ahem;
|
||||
width: 21em;
|
||||
}
|
||||
{
|
||||
background-color: yellow;
|
||||
direction: ltr;
|
||||
font: 20px/1 Ahem;
|
||||
width: 21em;
|
||||
}
|
||||
|
||||
img { vertical-align: top; }
|
||||
img
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -19,17 +19,23 @@
|
|||
|
||||
<meta name="flags" content="image" />
|
||||
<style type="text/css"><![CDATA[
|
||||
body { direction: rtl; }
|
||||
body
|
||||
{
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
div
|
||||
{
|
||||
background-color: yellow;
|
||||
direction: ltr;
|
||||
font: 20px/1 Ahem;
|
||||
width: 21em;
|
||||
}
|
||||
{
|
||||
background-color: yellow;
|
||||
direction: ltr;
|
||||
font: 20px/1 Ahem;
|
||||
width: 21em;
|
||||
}
|
||||
|
||||
img { vertical-align: top; }
|
||||
img
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -3,19 +3,14 @@
|
|||
<meta charset="utf-8" />
|
||||
<title>CSS Test Reference</title>
|
||||
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura" />
|
||||
<style>
|
||||
.tcu-all {
|
||||
text-combine-upright: all;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Test passes if the following paragraphs are identical:</p>
|
||||
|
||||
<div>
|
||||
<p>6月<span class="tcu-all">19</span>日</p>
|
||||
<p>6月<span class="tcu-all">19</span>日</p>
|
||||
<p>6月19日</p>
|
||||
<p>6月19日</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
|
@ -0,0 +1,95 @@
|
|||
<!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><title>CSS Reference</title>
|
||||
<link href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" rel="author" title="Gérard Talbot" />
|
||||
<link href="http://fantasai.inkedblade.net/contact" rel="author" title="Elika J. Etemad" />
|
||||
|
||||
<style>
|
||||
table {
|
||||
border-spacing: 0;
|
||||
margin: 1em;
|
||||
}
|
||||
td {
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
border: solid gray;
|
||||
}
|
||||
|
||||
.navy { background: navy}
|
||||
.blue { background: blue }
|
||||
.aqua { background: aqua }
|
||||
.teal { background: teal }
|
||||
.purp { background: purple }
|
||||
.pink { background: fuchsia }
|
||||
.yllw { background: yellow }
|
||||
.orng { background: orange }
|
||||
caption { background: green; }
|
||||
</style>
|
||||
|
||||
</head><body><p>Test passes if the following three tables look identical.
|
||||
|
||||
</p><table>
|
||||
<caption></caption>
|
||||
<tbody><tr>
|
||||
<td class="teal">
|
||||
</td><td rowspan="3">
|
||||
</td><td colspan="2" rowspan="2">
|
||||
</td><td class="purp">
|
||||
</td><td rowspan="2">
|
||||
</td></tr><tr>
|
||||
<td class="aqua">
|
||||
</td><td rowspan="2">
|
||||
</td></tr><tr>
|
||||
<td rowspan="2">
|
||||
</td><td class="yllw">
|
||||
</td><td class="pink">
|
||||
</td><td class="blue">
|
||||
|
||||
</td></tr><tr>
|
||||
<td class="orng">
|
||||
</td><td colspan="3">
|
||||
</td><td class="navy">
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<table>
|
||||
<tbody><tr>
|
||||
<td class="teal">
|
||||
</td><td rowspan="3">
|
||||
</td><td colspan="2" rowspan="2">
|
||||
</td><td class="purp">
|
||||
</td><td rowspan="2">
|
||||
</td></tr><tr>
|
||||
<td class="aqua">
|
||||
</td><td rowspan="2">
|
||||
</td></tr><tr>
|
||||
<td rowspan="2">
|
||||
</td><td class="yllw">
|
||||
</td><td class="pink">
|
||||
</td><td class="blue">
|
||||
|
||||
</td></tr><tr>
|
||||
<td class="orng">
|
||||
</td><td colspan="3">
|
||||
</td><td class="navy">
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<table>
|
||||
<tbody><tr>
|
||||
<td class="teal">
|
||||
</td><td rowspan="3">
|
||||
</td><td colspan="2" rowspan="2">
|
||||
</td><td class="purp">
|
||||
</td><td rowspan="2">
|
||||
</td></tr><tr>
|
||||
<td class="aqua">
|
||||
</td><td rowspan="2">
|
||||
</td></tr><tr>
|
||||
<td rowspan="2">
|
||||
</td><td class="yllw">
|
||||
</td><td class="pink">
|
||||
</td><td class="blue">
|
||||
|
||||
</td></tr><tr>
|
||||
<td class="orng">
|
||||
</td><td colspan="3">
|
||||
</td><td class="navy">
|
||||
</td></tr></tbody></table></body></html>
|
|
@ -0,0 +1,44 @@
|
|||
<!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 Writing Modes Module Level 3 CR Test Suite"; }
|
||||
@top-right { content: "Test text-baseline-slr-009-ref"; }
|
||||
@bottom-right { content: counter(page); }
|
||||
}
|
||||
</style>
|
||||
<link rel="author" title="Hajime Shiozawa" href="mailto:hajime.shiozawa@gmail.com" />
|
||||
<meta name="flags" content="image" />
|
||||
<style type="text/css"><![CDATA[
|
||||
|
||||
img
|
||||
{
|
||||
padding-left: 78px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
img + br + img
|
||||
{
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
img + br + img + br + img
|
||||
{
|
||||
padding-left: 102px;
|
||||
}
|
||||
]]></style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<p>Test passes if the <strong>right edge</strong> of an irregular polygon is straight and unbroken.</p>
|
||||
|
||||
<div><img src="support/swatch-fuchsia.png" width="48" height="60" alt="Image download support must be enabled" /><br /><img src="support/swatch-fuchsia.png" width="96" height="120" alt="Image download support must be enabled" /><br /><img src="support/swatch-fuchsia.png" width="24" height="30" alt="Image download support must be enabled" /></div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -7,7 +7,7 @@
|
|||
margin: 7%;
|
||||
counter-increment: page;
|
||||
@top-left { content: "CSS Writing Modes Module Level 3 CR Test Suite"; }
|
||||
@top-right { content: "Test text-baseline-002-ref"; }
|
||||
@top-right { content: "Test text-baseline-vrl-002-ref"; }
|
||||
@bottom-right { content: counter(page); }
|
||||
}
|
||||
</style>
|
|
@ -7,7 +7,7 @@
|
|||
margin: 7%;
|
||||
counter-increment: page;
|
||||
@top-left { content: "CSS Writing Modes Module Level 3 CR Test Suite"; }
|
||||
@top-right { content: "Test text-baseline-006-ref"; }
|
||||
@top-right { content: "Test text-baseline-vrl-006-ref"; }
|
||||
@bottom-right { content: counter(page); }
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue