Skip to content

Commit

Permalink
Merge pull request web-platform-tests#5786 from mrego/focus-within-006
Browse files Browse the repository at this point in the history
[selectors4] Use specific reference for focus-within-006
  • Loading branch information
frivoal authored May 5, 2017
2 parents 04e734b + 34ff164 commit f9e3d12
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
32 changes: 32 additions & 0 deletions css/selectors4/focus-within-006-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang=en class="reftest-wait">
<meta charset="utf-8">
<title>Selectors Level 4: focus-within Reference File</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:[email protected]">
<style>
:focus {
outline: none;

/* Make the caret invisible
since it matches the color of the text, which is transparent,
while keeping the text readable thanks to its shadow.
Not using the caret-color property as it is too new to be relied on. */
color: transparent; text-shadow: black 0px 0px 0px;
}

div {
border: solid 15px green;
}
</style>
<p>Test passes if, when the element below is focused,
it is surrounded by a thick green border.
There must be no red or blue once it is focused.</p>
<div>
<input id="focusme" value="Focus this element">
</div>
<script>
var focusme = document.getElementById('focusme');
focusme.focus();
document.documentElement.classList.remove('reftest-wait');
</script>
</html>
4 changes: 1 addition & 3 deletions css/selectors4/focus-within-006.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
<link rel="author" title="Keyong Li" href="mailto:[email protected]">
<link rel="author" title="Florian Rivoal" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/selectors-4/#focus-within-pseudo">
<link rel="match" href="focus-within-001-ref.html">
<link rel="match" href="focus-within-006-ref.html">
<meta name="assert" content="Test that :focus-within works on form controls, using an input element.">
<style>
/* Suppress things that cannot be reproduced in the reference file */
:focus {
all: initial;
outline: none;

/* Make the caret invisible
Expand Down

0 comments on commit f9e3d12

Please sign in to comment.