Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: LayoutTests/fast/dom/shadow/focus-shadowhost-display-none-expected.txt

Issue 1144953007: Remove tabStop feature (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 Check if shadow host with display:none CSS rule for :focus works. crbug.com/4828 30
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 when shadow host itself is focused, it should match display:none, lose focus the n becomes display:block again.
7 PASS window.getComputedStyle(host).display is "none"
8 PASS document.activeElement is host
9 PASS root.activeElement is null
10 PASS successfullyParsed is true
11
12 TEST COMPLETE
13 PASS window.getComputedStyle(host).display is "block"
14 PASS document.activeElement is document.body
15 PASS root.activeElement is null
16 when shadow host with tabStop=false has focused element inside the shadow, it sh ould also match display:none, then lose focus and become display:block again.
17 PASS window.getComputedStyle(host).display is "none"
18 PASS document.activeElement is host
19 PASS root.activeElement is input
20 PASS window.getComputedStyle(host).display is "block"
21 PASS document.activeElement is document.body
22 PASS root.activeElement is null
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698