Update web-platform-tests to revision af2796bc4ea941309f2f1f55c05e81b1dcef7ffb

This commit is contained in:
WPT Sync Bot 2020-10-31 08:21:06 +00:00
parent 4c3247e480
commit 4fcc308130
99 changed files with 2152 additions and 281 deletions

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<title>::placeholder should not support 'writing-mode', 'direction', and 'text-orientation'</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#placeholder-pseudo">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-styling">
<link rel="match" href="reference/placeholder-excluded-properties-ref.html">
<style>
.horizontal::placeholder {
writing-mode: vertical-rl;
direction: rtl;
}
.vertical {
writing-mode: vertical-rl;
}
.vertical::placeholder {
text-orientation: upright;
}
</style>
<body>
<input class="horizontal" placeholder="placeholder">
<input class="vertical" placeholder="placeholder">
</body>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<style>
.vertical {
writing-mode: vertical-rl;
}
</style>
<body>
<input placeholder="placeholder">
<input class="vertical" placeholder="placeholder">
</body>