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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-expected.txt

Issue 2795143004: [selectors4] Implement :focus-within pseudo-class (Closed)
Patch Set: Rebased patch Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-expected.txt b/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-expected.txt
index 66e84bb5229f264785586b7b128be7e2b13fbbc1..59e0e95fbe690f31123eb05e683c7b818158ead2 100644
--- a/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-expected.txt
@@ -50,6 +50,7 @@ PASS setThenReadSelectorText(':enabled') is ':enabled'
PASS setThenReadSelectorText(':first-child') is ':first-child'
PASS setThenReadSelectorText(':first-of-type') is ':first-of-type'
PASS setThenReadSelectorText(':focus') is ':focus'
+PASS setThenReadSelectorText(':focus-within') is ':focus-within'
PASS setThenReadSelectorText(':hover') is ':hover'
PASS setThenReadSelectorText(':indeterminate') is ':indeterminate'
PASS setThenReadSelectorText(':link') is ':link'
@@ -96,6 +97,7 @@ PASS setThenReadSelectorText('a#b::-webkit-slider-thumb') is 'a#b::-webkit-slide
PASS setThenReadSelectorText('a[b].c#d::-webkit-slider-thumb') is 'a[b].c#d::-webkit-slider-thumb'
PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([type="file"]):focus'
+PASS setThenReadSelectorText('input:not([type="file"]):focus-within') is 'input:not([type="file"]):focus-within'
PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([type="file"])'
PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)'
PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):enabled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled'
@@ -108,6 +110,7 @@ PASS setThenReadSelectorText('*:active') is ':active'
PASS setThenReadSelectorText('|a') is '|a'
PASS setThenReadSelectorText('input[type=file]:focus') is 'input[type="file"]:focus'
+PASS setThenReadSelectorText('input[type=file]:focus-within') is 'input[type="file"]:focus-within'
PASS setThenReadSelectorText('a+b') is 'a + b'
PASS setThenReadSelectorText('a~b') is 'a ~ b'

Powered by Google App Engine
This is Rietveld 408576698