Update web-platform-tests to revision b'3ee7ccc2abbbc8d8f6efbb45f80bffdb3c0c76ba'

This commit is contained in:
WPT Sync Bot 2023-03-11 01:43:56 +00:00
parent 111363d338
commit 2ebdfcea9d
630 changed files with 8297 additions and 4979 deletions

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<style>
.container {
font-family: monospace;
font-size: 20px;
width: 20ch;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
</style>
<div class="container">
123 567 901 345 789
123 567 901 345 789
123
</div>

View file

@ -0,0 +1,20 @@
<!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-line-clamp-001-ref.html">
<style>
.container {
font-family: monospace;
font-size: 20px;
width: 20ch;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-wrap: balance;
}
</style>
<div class="container">
123 567 901 345 789
123 567 901 345 789
123
</div>