Update CSS tests to revision 7d0ff6117ee51720c307ea24d413d13eb5abf3e6

This commit is contained in:
Ms2ger 2016-03-01 16:08:43 +01:00
parent 40c52d55e2
commit 349c75536d
7391 changed files with 304135 additions and 153491 deletions

View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8">
<title>Selectors Level 4: focus-within with shadow DOM</title>
<link href="mailto:kli79@bloomberg.net" rel="author" title="Keyong Li">
<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal">
<link href="https://drafts.csswg.org/selectors-4/#focus-within-pseudo" rel="help">
<link href="reference/focus-within-shadow-001-ref.htm" rel="match">
<meta content="interact dom" name="flags">
<meta content="Test that :focus-within applies to a shadow host containing a focused element." name="assert">
<style>
div:focus-within {
border: solid 15px green;
}
</style>
</head><body>
<p>Test passes if there is a green rectangle below.</p>
<div id="shadow-host"><strong>Skip this test, shadow DOM is not supported.</strong></div>
<template id="shadow-template">
<style>
/* Suppress things that cannot be reproduced in the reference file */
:focus {
outline: none;
}
</style>
<div onfocus="this.classList.toggle('reftest-wait');" tabindex="1" id="focusme" class="reftest-wait"></div>
</template>
<script>
var shadow = document.getElementById('shadow-host').createShadowRoot();
var template = document.getElementById('shadow-template');
var instance = document.importNode(template.content, true);
shadow.appendChild(instance);
window.setTimeout(function() {
var focusme = shadow.getElementById('focusme');
focusme.focus();
}, 0);
</script>
</body></html>