mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update web-platform-tests to revision b'ee6da9d71d0268d7fdb04e8e5b26858f46ee0cc4'
This commit is contained in:
parent
4401622eb1
commit
b77ad115f6
16832 changed files with 270819 additions and 87621 deletions
|
@ -1,6 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Input type=image with CSS content.</title>
|
||||
<title>Stylability of select>option with :checked pseudo</title>
|
||||
<link rel="author" href="mailto:masonf@chromium.org">
|
||||
|
||||
<style>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Input type=image with CSS content.</title>
|
||||
<title>Stylability of select>option with :checked pseudo</title>
|
||||
<link rel="author" href="mailto:masonf@chromium.org">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/form-elements.html#the-select-element">
|
||||
<link rel="match" href="option-checked-styling-ref.html">
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Select rendering invalidation</title>
|
||||
<link rel="author" href="mailto:masonf@chromium.org">
|
||||
|
||||
<style>
|
||||
select {
|
||||
color: lime;
|
||||
}
|
||||
</style>
|
||||
|
||||
<select id=select>
|
||||
<option>The down arrow should be green</option>
|
||||
<option>value B</option>
|
||||
</select>
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<meta charset="utf-8">
|
||||
<title>Select rendering invalidation</title>
|
||||
<link rel="author" href="mailto:masonf@chromium.org">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/form-elements.html#the-select-element">
|
||||
<link rel="match" href="select-invalidation-ref.html">
|
||||
|
||||
<style>
|
||||
select {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
|
||||
<select id=select>
|
||||
<option>The down arrow should be green</option>
|
||||
<option>value B</option>
|
||||
</select>
|
||||
|
||||
<script>
|
||||
requestAnimationFrame(() => {
|
||||
requestAnimationFrame(() => {
|
||||
select.style.color = "lime";
|
||||
requestAnimationFrame(() => {
|
||||
requestAnimationFrame(() => {
|
||||
document.documentElement.classList.remove("reftest-wait");
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue