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

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

Issue 1616423003: Fix selector namespace prefix resolution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed review issues Created 4 years, 10 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
OLDNEW
1 This tests setting and re-serialization of some CSS selectors. 1 This tests setting and re-serialization of some CSS selectors.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS setThenReadSelectorText('') is '_foo' 6 PASS setThenReadSelectorText('') is '_foo'
7 PASS setThenReadSelectorText('123') is '_foo' 7 PASS setThenReadSelectorText('123') is '_foo'
8 PASS setThenReadSelectorText('-') is '_foo' 8 PASS setThenReadSelectorText('-') is '_foo'
9 PASS setThenReadSelectorText('$') is '_foo' 9 PASS setThenReadSelectorText('$') is '_foo'
10 PASS setThenReadSelectorText(':') is '_foo' 10 PASS setThenReadSelectorText(':') is '_foo'
(...skipping 14 matching lines...) Expand all
25 PASS setThenReadSelectorText('[a^="b"]') is '[a^="b"]' 25 PASS setThenReadSelectorText('[a^="b"]') is '[a^="b"]'
26 PASS setThenReadSelectorText('[a$="b"]') is '[a$="b"]' 26 PASS setThenReadSelectorText('[a$="b"]') is '[a$="b"]'
27 PASS setThenReadSelectorText('[a*="b"]') is '[a*="b"]' 27 PASS setThenReadSelectorText('[a*="b"]') is '[a*="b"]'
28 28
29 PASS setThenReadSelectorText('*|a') is '*|a' 29 PASS setThenReadSelectorText('*|a') is '*|a'
30 PASS setThenReadSelectorText('n|a') is 'n|a' 30 PASS setThenReadSelectorText('n|a') is 'n|a'
31 PASS setThenReadSelectorText('*|*') is '*|*' 31 PASS setThenReadSelectorText('*|*') is '*|*'
32 PASS setThenReadSelectorText('n|*') is 'n|*' 32 PASS setThenReadSelectorText('n|*') is 'n|*'
33 PASS setThenReadSelectorText('[*|a]') is '[*|a]' 33 PASS setThenReadSelectorText('[*|a]') is '[*|a]'
34 PASS setThenReadSelectorText('[n|a]') is '[n|a]' 34 PASS setThenReadSelectorText('[n|a]') is '[n|a]'
35 PASS setThenReadSelectorText('unresolved|a') is '_foo'
36 PASS setThenReadSelectorText('unresolved|*') is '_foo'
37 PASS setThenReadSelectorText('[unresolved|a]') is '_foo'
35 38
36 PASS setThenReadSelectorText('a:active') is 'a:active' 39 PASS setThenReadSelectorText('a:active') is 'a:active'
37 PASS setThenReadSelectorText('a b') is 'a b' 40 PASS setThenReadSelectorText('a b') is 'a b'
38 PASS setThenReadSelectorText('a + b') is 'a + b' 41 PASS setThenReadSelectorText('a + b') is 'a + b'
39 PASS setThenReadSelectorText('a ~ b') is 'a ~ b' 42 PASS setThenReadSelectorText('a ~ b') is 'a ~ b'
40 PASS setThenReadSelectorText('a > b') is 'a > b' 43 PASS setThenReadSelectorText('a > b') is 'a > b'
41 44
42 PASS setThenReadSelectorText(':active') is ':active' 45 PASS setThenReadSelectorText(':active') is ':active'
43 PASS setThenReadSelectorText(':checked') is ':checked' 46 PASS setThenReadSelectorText(':checked') is ':checked'
44 PASS setThenReadSelectorText(':disabled') is ':disabled' 47 PASS setThenReadSelectorText(':disabled') is ':disabled'
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 PASS setThenReadSelectorText(':after') is '::after' 116 PASS setThenReadSelectorText(':after') is '::after'
114 PASS setThenReadSelectorText(':before') is '::before' 117 PASS setThenReadSelectorText(':before') is '::before'
115 PASS setThenReadSelectorText(':first-letter') is '::first-letter' 118 PASS setThenReadSelectorText(':first-letter') is '::first-letter'
116 PASS setThenReadSelectorText(':first-line') is '::first-line' 119 PASS setThenReadSelectorText(':first-line') is '::first-line'
117 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )') is ':-webkit-any(a.class1,#id,[attr])' 120 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )') is ':-webkit-any(a.class1,#id,[attr])'
118 121
119 PASS successfullyParsed is true 122 PASS successfullyParsed is true
120 123
121 TEST COMPLETE 124 TEST COMPLETE
122 125
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698