mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update web-platform-tests to revision b'421155a1c8752a36b465e62f466b18f821190e08'
This commit is contained in:
parent
871cefc926
commit
fd56698ec7
722 changed files with 19686 additions and 8130 deletions
|
@ -2,7 +2,7 @@
|
|||
<meta charset="utf-8">
|
||||
<title>CSS Test: ::marker pseudo elements styled with 'text-align' property</title>
|
||||
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
|
||||
<link rel="match" href="marker-text-align-ref.html">
|
||||
<link rel="match" href="marker-text-align-001-ref.html">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text/#text-align-property">
|
||||
<meta name="assert" content="Checks that 'text-align' doesn't apply nor inherit to ::marker.">
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: ::marker pseudo elements styled with 'text-align' property</title>
|
||||
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#marker-properties">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text/#text-align-property">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1805603">
|
||||
<link rel="stylesheet" href="/fonts/ahem.css">
|
||||
<style>
|
||||
ul {
|
||||
width: 300px;
|
||||
border: 1px solid black;
|
||||
font-family: Ahem;
|
||||
}
|
||||
li {
|
||||
/* Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1808393 */
|
||||
list-style-type: "A";
|
||||
}
|
||||
</style>
|
||||
<ul class="ul">
|
||||
<li><div style="text-align: right;">AAA</div></li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li><div style="text-align: end;">AAA</div></li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li><div style="text-align: center;">AAA</div></li>
|
||||
</ul>
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: ::marker pseudo elements styled with 'text-align' property</title>
|
||||
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#marker-properties">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text/#text-align-property">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1805603">
|
||||
<link rel="match" href="marker-text-align-002-ref.html">
|
||||
<meta name="assert" content="Checks that 'text-align' does not shift the ::marker element.">
|
||||
<link rel="stylesheet" href="/fonts/ahem.css">
|
||||
<style>
|
||||
ul {
|
||||
width: 300px;
|
||||
border: 1px solid black;
|
||||
font-family: Ahem;
|
||||
}
|
||||
li {
|
||||
/* Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1808393 */
|
||||
list-style-type: "A";
|
||||
}
|
||||
</style>
|
||||
<ul class="ul">
|
||||
<li style="text-align: right;">AAA</li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li style="text-align: end;">AAA</li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li style="text-align: center;">AAA</li>
|
||||
</ul>
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: ::marker pseudo elements styled with 'text-align' property</title>
|
||||
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#marker-properties">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text/#text-align-property">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1805603">
|
||||
<link rel="stylesheet" href="/fonts/ahem.css">
|
||||
<style>
|
||||
body {
|
||||
direction: rtl;
|
||||
}
|
||||
ul {
|
||||
width: 300px;
|
||||
border: 1px solid black;
|
||||
font-family: Ahem;
|
||||
}
|
||||
li {
|
||||
/* Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1808393 */
|
||||
list-style-type: "A";
|
||||
}
|
||||
</style>
|
||||
<ul class="ul">
|
||||
<li><div style="text-align: left;">AAA</div></li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li><div style="text-align: end;">AAA</div></li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li><div style="text-align: center;">AAA</div></li>
|
||||
</ul>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: ::marker pseudo elements styled with 'text-align' property</title>
|
||||
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#marker-properties">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text/#text-align-property">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1805603">
|
||||
<link rel="match" href="marker-text-align-003-ref.html">
|
||||
<meta name="assert" content="Checks that 'text-align' does not shift the ::marker element.">
|
||||
<link rel="stylesheet" href="/fonts/ahem.css">
|
||||
<style>
|
||||
body {
|
||||
direction: rtl;
|
||||
}
|
||||
ul {
|
||||
width: 300px;
|
||||
border: 1px solid black;
|
||||
font-family: Ahem;
|
||||
}
|
||||
li {
|
||||
/* Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1808393 */
|
||||
list-style-type: "A";
|
||||
}
|
||||
</style>
|
||||
<ul class="ul">
|
||||
<li style="text-align: left;">AAA</li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li style="text-align: end;">AAA</li>
|
||||
</ul>
|
||||
<ul class="ul">
|
||||
<li style="text-align: center;">AAA</li>
|
||||
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue