mirror of
https://github.com/servo/servo.git
synced 2025-08-16 02:45:36 +01:00
Update web-platform-tests to revision cbbc48732b24557ed2b291c2de83e81790f35042
This commit is contained in:
parent
85bc0cd01e
commit
61a8cbf448
98 changed files with 1083 additions and 436 deletions
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<button style="color:green">Should be green on focus</button>
|
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<title>CSS Shadow Parts - Nested Pseudo Classes</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-shadow-parts" >
|
||||
<link rel="help" href="https://drafts.csswg.org/selectors/#matches">
|
||||
<link href="https://drafts.csswg.org/selectors/#matches" rel="help">
|
||||
<link rel="match" href="interaction-with-nested-pseudo-class-ref.html">
|
||||
<script src="/common/reftest-wait.js"></script>
|
||||
<script src="/resources/testdriver.js"></script>
|
||||
<script src="/resources/testdriver-vendor.js"></script>
|
||||
<style>
|
||||
:root { color: red; }
|
||||
::part(test):is(:focus) { color: green; }
|
||||
</style>
|
||||
<div id=host></div>
|
||||
<script>
|
||||
const root = host.attachShadow({mode: 'closed'});
|
||||
root.innerHTML = '<button part=test>Should be green on focus</button>';
|
||||
const button = root.querySelector('button');
|
||||
button.addEventListener('focus', takeScreenshot);
|
||||
test_driver.bless('focus button', () => button.focus());
|
||||
</script>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue