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

This commit is contained in:
WPT Sync Bot 2023-03-02 01:47:05 +00:00
parent 61fe4cf606
commit 17f4d58879
157 changed files with 1609 additions and 430 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
.container {
font-family: Ahem;
font-size: 20px;
width: 20ch;
}
</style>
<div class="container">
123 567 901 345 789 123
</div>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<meta charset=utf-8>
<title>CSS Text reference</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<style>
p {
width: fit-content;
border: 2px solid green;
font: 24px monospace;
}
</style>
<body>
</body>
<script>
for (i = 0x200b; i <= 0x200f; ++i) {
txt = "This should have no leading or trailing ["
+ i.toString(16)
+ "]";
p = document.createElement("p");
p.textContent = txt;
document.body.appendChild(p);
}
</script>

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<meta charset=utf-8>
<title>CSS Text reference</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<style>
p {
width: min-content;
border: 2px solid green;
font: 24px monospace;
}
</style>
<body>
<p>
This
is
a
simple
test
</p>
</body>