Update web-platform-tests to revision b'b7c1d80f991820c17aaae0477052c30d7f699eba'

This commit is contained in:
WPT Sync Bot 2022-11-30 01:45:48 +00:00
parent 189236862a
commit 274846e69e
217 changed files with 7520 additions and 2797 deletions

View file

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter should handle tabular character</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-styling">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<style>
.sample {
font-family: Ahem;
font-size: 20px;
line-height: 24px;
}
.fake-initial-letter {
background: lime;
float: left;
height: 80px;
margin-top: 14px;
width: 80px;
}
.fake-initial-letter-tab {
background: yellow;
float: left;
height: 80px;
margin-top: 14px;
width: 640px;
}
</style>
</head>
<body>
<div class="sample"><div class="fake-initial-letter-tab"></div>
<div class="fake-initial-letter"></div>
bc<br>def<br>ghi<br>jkl<br>mno<br>
</div>
</body>
</html>

View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter should handle tabular character</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-styling">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<style>
.sample {
direction: rtl;
font-family: Ahem;
font-size: 20px;
line-height: 24px;
}
.fake-initial-letter {
background: lime;
float: right;
height: 80px;
margin-top: 14px;
width: 80px;
}
.fake-initial-letter-tab {
background: yellow;
float: right;
height: 80px;
margin-top: 14px;
width: 640px;
}
</style>
</head>
<body>
<div class="sample"><div class="fake-initial-letter-tab"></div>
<div class="fake-initial-letter"></div>
bc<br>def<br>ghi<br>jkl<br>mno<br>
</div>
</body>
</html>

View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter should handle tabular character</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-styling">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<link rel="match" href="initial-letter-with-tab-rtl-ref.html">
<style>
.sample {
direction: rtl;
font-family: Ahem;
font-size: 20px;
line-height: 24px;
}
.initial-letter::first-letter {
initial-letter: 3 drop;
color: lime;
font-size: 100px; /* should be ignored in rendering */
line-height: 50px; /* should be ignored in rendering */
}
.sample { white-space: pre; }
.initial-letter::first-letter { background: yellow; }
</style>
</head>
<body>
<div class="sample initial-letter">&#9;Abc
def
ghi
jkl
mno</div>
</body>
</html>

View file

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter should handle tabular character</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-styling">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<link rel="match" href="initial-letter-with-tab-ref.html">
<style>
.sample {
font-family: Ahem;
font-size: 20px;
line-height: 24px;
}
.initial-letter::first-letter {
initial-letter: 3 drop;
color: lime;
font-size: 100px; /* should be ignored in rendering */
line-height: 50px; /* should be ignored in rendering */
}
.sample { white-space: pre; }
.initial-letter::first-letter { background: yellow; }
</style>
</head>
<body>
<div class="sample initial-letter">&#9;Abc
def
ghi
jkl
mno</div>
</body>
</html>