forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request web-platform-tests#5786 from mrego/focus-within-006
[selectors4] Use specific reference for focus-within-006
- Loading branch information
Showing
2 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|