зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1571209 [wpt PR 18273] - [css-text] tests for css issue 3879, a=testonly
Automatic update from web-platform-tests [css-text] tests for css issue 3879 (#18273) See https://github.com/w3c/csswg-drafts/issues/3879 -- wpt-commits: 4c93404d56218bb88f32b578ece7d47712952530 wpt-pr: 18273
This commit is contained in:
Родитель
4a9559d18a
Коммит
99c3d3d0f8
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Test reference</title>
|
||||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
||||
<style>
|
||||
div { font-family: monospace; }
|
||||
</style>
|
||||
|
||||
<p>Test passes if there are two columns of "x" characters below and no red.
|
||||
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
||||
<div>xx<br>xx</div>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Test reference</title>
|
||||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
||||
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
||||
<style>
|
||||
div {
|
||||
white-space: pre-wrap;
|
||||
font-family: Ahem;
|
||||
font-size: 10px;
|
||||
line-height: 1;
|
||||
color: green;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there are two green tall boxes below and no red.
|
||||
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Text level 3 Test: sequence of spaces and other space separators at the end of line must be removed</title>
|
||||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
|
||||
<link rel="match" href="reference/trailing-other-space-separators-001-ref.html">
|
||||
<meta name="assert" content="An sequence of regular spaces and other space separators at the end of the line must be removed.">
|
||||
<style>
|
||||
div { font-family: monospace; width: 2ch; }
|
||||
span { background: red; } /* If the space hangs instead of being removed, there will be red */
|
||||
</style>
|
||||
|
||||
<p>Test passes if there are two columns of "x" characters below and no red.
|
||||
|
||||
<div>xx<span>                    </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span><wbr>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span><wbr>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
||||
<div>xx<span> </span>xx</div>
|
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Text level 3 Test: sequence of spaces and other space separators at the end of line with white-space:pre-wrap</title>
|
||||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
|
||||
<link rel="match" href="reference/trailing-other-space-separators-002-ref.html">
|
||||
<meta name="assert" content="An sequence of regular spaces and other space separators at the end of the line must hang if white-space is pre-wrap.">
|
||||
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
||||
<style>
|
||||
div {
|
||||
white-space: pre-wrap;
|
||||
font-family: Ahem;
|
||||
font-size: 10px;
|
||||
line-height: 1;
|
||||
width: 3ch;
|
||||
color: green;
|
||||
}
|
||||
.red {
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
.red div {
|
||||
color: red;
|
||||
}
|
||||
span { color: transparent; } /* because ogham space is otherwise visible*/
|
||||
</style>
|
||||
|
||||
<p>Test passes if there are two green tall boxes below and no red.
|
||||
|
||||
<section class=red>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
<div>x x<br>x x</div>
|
||||
</section>
|
||||
<section>
|
||||
<div>x x<span> </span>                   x x</div>
|
||||
<div>x x<span> </span>x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x <wbr>x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x <wbr>x x</div>
|
||||
<div>x x x x</div>
|
||||
<div>x x x x</div>
|
||||
</section>
|
Загрузка…
Ссылка в новой задаче