mirror of
https://github.com/servo/servo.git
synced 2025-08-13 01:15:34 +01:00
Update web-platform-tests to revision c12517985bca8a3fafd1d3f4f78df75ea4ea79cf
This commit is contained in:
parent
e2687b5da8
commit
927b34500f
121 changed files with 2408 additions and 255 deletions
|
@ -0,0 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<div>
|
||||
<span style="color: green">green</span><span style="color: red">red</span>
|
||||
</div>
|
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue