Update web-platform-tests to revision b'2d1ad05908ee5447fdfa70eed9757273aa5da367'

This commit is contained in:
WPT Sync Bot 2023-03-05 01:39:17 +00:00
parent 7809bb7cba
commit 84de92ecaf
83 changed files with 1324 additions and 779 deletions

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<style>
.container {
font-family: monospace;
font-size: 20px;
width: 20ch;
border: solid 1px;
}
</style>
<div class="container" style="text-align: right">
123456789 123 567
123456789 123 567
</div>
<div class="container" style="text-align: center">
123456789 123 567
123456789 123 567
</div>
<div class="container" style="text-align: justify">
123456789 123 567
123456789 123 567
</div>

View file

@ -0,0 +1,24 @@
<!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-align-001-ref.html">
<style>
.container {
font-family: monospace;
font-size: 20px;
width: 20ch;
border: solid 1px;
text-wrap: balance;
}
</style>
<div class="container" style="text-align: right">
123456789 123 567
123456789 123 567
</div>
<div class="container" style="text-align: center">
123456789 123 567
123456789 123 567
</div>
<div class="container" style="text-align: justify">
123456789 123 567
123456789 123 567
</div>