mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 5c34fc630374b9eb0559139a486ff1a2e4247c4f
This commit is contained in:
parent
b0f0bd8282
commit
1b463fce85
222 changed files with 5045 additions and 641 deletions
|
@ -0,0 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
input { background-color: rgb(0, 100, 0); }
|
||||
</style>
|
||||
<input value="text">
|
||||
<p>PASS if the input field has a dark green background</p>
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="help" href="https://crbug.com/1086732">
|
||||
<link rel="match" href="appearance-transition-ref.html">
|
||||
<style>
|
||||
input {
|
||||
background-color: rgb(0, 0, 0);
|
||||
transition: background-color 1e10s steps(2, start);
|
||||
}
|
||||
|
||||
.bg200 {
|
||||
background-color: rgb(0, 200, 0);
|
||||
}
|
||||
</style>
|
||||
<input value="text" id=input>
|
||||
<script>
|
||||
document.documentElement.offsetTop;
|
||||
input.classList.toggle('bg200');
|
||||
</script>
|
||||
<p>PASS if the input field has a dark green background</p>
|
Loading…
Add table
Add a link
Reference in a new issue