Update web-platform-tests to revision b'797e75946c24d0625f04247b16d33c26d4ada273'

This commit is contained in:
WPT Sync Bot 2023-04-30 01:27:44 +00:00
parent 4339b3bab4
commit 44e249bebb
414 changed files with 12588 additions and 11565 deletions

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
div {
border: 1px solid;
font: 10px Ahem;
text-indent: 5em;
}
.min {
width: min-content;
}
.max {
width: max-content;
}
</style>
<div class="min">
12<br>456<br>89012
</div>
<div class="max">
12&nbsp;456&nbsp;89012
</div>

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-text-3/#text-indent-property">
<link rel="match" href="reference/text-indent-min-max-content-001-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
div {
border: 1px solid;
font: 10px Ahem;
text-indent: 5em;
}
.min {
width: min-content;
}
.max {
width: max-content;
}
</style>
<div class="min">
12 456 89012
</div>
<div class="max">
12 456 89012
</div>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
border: 1px solid;
font-family: Ahem;
font-size: 10px;
text-indent: 5ch;
width: 10ch;
}
</style>
<div>
01<br>
34 6 89<br>
12 3 56
</div>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-text-4/#valdef-text-wrap-balance">
<link rel="match" href="reference/text-wrap-balance-text-indent-001-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
border: 1px solid;
font-family: Ahem;
font-size: 10px;
text-indent: 5ch;
text-wrap: balance;
width: 10ch;
}
</style>
<div>
01
34 6 89
12 3 56
</div>