Update web-platform-tests to revision c12517985bca8a3fafd1d3f4f78df75ea4ea79cf

This commit is contained in:
WPT Sync Bot 2020-11-19 08:20:44 +00:00
parent e2687b5da8
commit 927b34500f
121 changed files with 2408 additions and 255 deletions

View file

@ -0,0 +1,4 @@
<!DOCTYPE html>
<div>
<span style="color: green">green</span><span style="color: red">red</span>
</div>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<title>inline block ::before styles should apply inside ::first-line</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#generated-content">
<link rel="match" href="first-line-with-inline-block-before-ref.html">
<style>
#target::first-line {
color: red;
}
#target::before {
content: "green";
color: green;
display: inline-block;
}
</style>
<div id="target">red</div>