mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Update web-platform-tests to revision a89693b62066da0e4808c0bc76c581188398e73d
This commit is contained in:
parent
1e79f27cd4
commit
7ddb44a302
102 changed files with 1119 additions and 421 deletions
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
input::placeholder {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
<form>
|
||||
<input placeholder="this text should be red">
|
||||
</form>
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Interaction of ::first-line and ::placeholder</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-pseudo">
|
||||
<link rel="match" href="first-line-and-placeholder-ref.html">
|
||||
<meta name="assert" content="Tests ::placeholder interaction with ::first-line pseudo element">
|
||||
<style>
|
||||
input::first-line {
|
||||
background-color: initial;
|
||||
}
|
||||
|
||||
input::placeholder {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
<form>
|
||||
<input placeholder="this text should be red">
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue