Update web-platform-tests to revision 322c4da99b1d62796d5f4105eb02a745bb35d3f9

This commit is contained in:
WPT Sync Bot 2020-11-04 08:20:32 +00:00
parent 8b9e607aac
commit b89d47297d
148 changed files with 2587 additions and 278 deletions

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-text-line">
<link rel="match" href="reference/first-line-with-inline-block-ref.html">
<style>
.fl:first-line {
color: red;
}
.fl-atomic {
display: inline-block;
}
.fl-atomic:first-line {
color: lime;
}
</style>
<div class="fl">
FIRST <div class="fl-atomic">first</span><br>second</div> FIRST
</div>