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

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

Issue 1574323003: Split compound selector after consume finished. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@upload-base
Patch Set: Removed obsolete serialization hack and fixed unit tests. Created 4 years, 11 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 PASS setThenReadSelectorText('::after') is '::after' 63 PASS setThenReadSelectorText('::after') is '::after'
64 PASS setThenReadSelectorText('::before') is '::before' 64 PASS setThenReadSelectorText('::before') is '::before'
65 PASS setThenReadSelectorText('::first-letter') is '::first-letter' 65 PASS setThenReadSelectorText('::first-letter') is '::first-letter'
66 PASS setThenReadSelectorText('::first-line') is '::first-line' 66 PASS setThenReadSelectorText('::first-line') is '::first-line'
67 PASS setThenReadSelectorText('::selection') is '::selection' 67 PASS setThenReadSelectorText('::selection') is '::selection'
68 68
69 PASS setThenReadSelectorText(':-webkit-any-link') is ':-webkit-any-link' 69 PASS setThenReadSelectorText(':-webkit-any-link') is ':-webkit-any-link'
70 PASS setThenReadSelectorText(':-webkit-autofill') is ':-webkit-autofill' 70 PASS setThenReadSelectorText(':-webkit-autofill') is ':-webkit-autofill'
71 PASS setThenReadSelectorText(':-webkit-drag') is ':-webkit-drag' 71 PASS setThenReadSelectorText(':-webkit-drag') is ':-webkit-drag'
72 72
73 PASS setThenReadSelectorText('::-webkit-file-upload-button') is '*::-webkit-file -upload-button' 73 PASS setThenReadSelectorText('::-webkit-file-upload-button') is '::-webkit-file- upload-button'
74 PASS setThenReadSelectorText('::-webkit-search-cancel-button') is '*::-webkit-se arch-cancel-button' 74 PASS setThenReadSelectorText('::-webkit-search-cancel-button') is '::-webkit-sea rch-cancel-button'
75 PASS setThenReadSelectorText('::-webkit-search-decoration') is '*::-webkit-searc h-decoration' 75 PASS setThenReadSelectorText('::-webkit-search-decoration') is '::-webkit-search -decoration'
76 PASS setThenReadSelectorText('::-webkit-search-results-button') is '*::-webkit-s earch-results-button' 76 PASS setThenReadSelectorText('::-webkit-search-results-button') is '::-webkit-se arch-results-button'
77 PASS setThenReadSelectorText('::-webkit-search-results-decoration') is '*::-webk it-search-results-decoration' 77 PASS setThenReadSelectorText('::-webkit-search-results-decoration') is '::-webki t-search-results-decoration'
78 PASS setThenReadSelectorText('::-webkit-slider-thumb') is '*::-webkit-slider-thu mb' 78 PASS setThenReadSelectorText('::-webkit-slider-thumb') is '::-webkit-slider-thum b'
79 79
80 PASS setThenReadSelectorText('a::-webkit-slider-thumb') is 'a::-webkit-slider-th umb' 80 PASS setThenReadSelectorText('a::-webkit-slider-thumb') is 'a::-webkit-slider-th umb'
81 PASS setThenReadSelectorText('a ::-webkit-slider-thumb') is 'a *::-webkit-slider -thumb' 81 PASS setThenReadSelectorText('a ::-webkit-slider-thumb') is 'a ::-webkit-slider- thumb'
82 PASS setThenReadSelectorText('[a]::-webkit-slider-thumb') is '[a]::-webkit-slide r-thumb' 82 PASS setThenReadSelectorText('[a]::-webkit-slider-thumb') is '[a]::-webkit-slide r-thumb'
83 PASS setThenReadSelectorText('[a] ::-webkit-slider-thumb') is '[a] *::-webkit-sl ider-thumb' 83 PASS setThenReadSelectorText('[a] ::-webkit-slider-thumb') is '[a] ::-webkit-sli der-thumb'
84 PASS setThenReadSelectorText('.a::-webkit-slider-thumb') is '.a::-webkit-slider- thumb' 84 PASS setThenReadSelectorText('.a::-webkit-slider-thumb') is '.a::-webkit-slider- thumb'
85 PASS setThenReadSelectorText('.a ::-webkit-slider-thumb') is '.a *::-webkit-slid er-thumb' 85 PASS setThenReadSelectorText('.a ::-webkit-slider-thumb') is '.a ::-webkit-slide r-thumb'
86 PASS setThenReadSelectorText('#a::-webkit-slider-thumb') is '#a::-webkit-slider- thumb' 86 PASS setThenReadSelectorText('#a::-webkit-slider-thumb') is '#a::-webkit-slider- thumb'
87 PASS setThenReadSelectorText('#a ::-webkit-slider-thumb') is '#a *::-webkit-slid er-thumb' 87 PASS setThenReadSelectorText('#a ::-webkit-slider-thumb') is '#a ::-webkit-slide r-thumb'
88 PASS setThenReadSelectorText('* ::-webkit-slider-thumb') is '* *::-webkit-slider -thumb' 88 PASS setThenReadSelectorText('* ::-webkit-slider-thumb') is '* ::-webkit-slider- thumb'
89 89
90 PASS setThenReadSelectorText('a[b]::-webkit-slider-thumb') is 'a[b]::-webkit-sli der-thumb' 90 PASS setThenReadSelectorText('a[b]::-webkit-slider-thumb') is 'a[b]::-webkit-sli der-thumb'
91 PASS setThenReadSelectorText('a.b::-webkit-slider-thumb') is 'a.b::-webkit-slide r-thumb' 91 PASS setThenReadSelectorText('a.b::-webkit-slider-thumb') is 'a.b::-webkit-slide r-thumb'
92 PASS setThenReadSelectorText('a#b::-webkit-slider-thumb') is 'a#b::-webkit-slide r-thumb' 92 PASS setThenReadSelectorText('a#b::-webkit-slider-thumb') is 'a#b::-webkit-slide r-thumb'
93 PASS setThenReadSelectorText('a[b].c#d::-webkit-slider-thumb') is 'a[b].c#d::-we bkit-slider-thumb' 93 PASS setThenReadSelectorText('a[b].c#d::-webkit-slider-thumb') is 'a[b].c#d::-we bkit-slider-thumb'
94 94
95 PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([ty pe="file"]):focus' 95 PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([ty pe="file"]):focus'
96 PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([ty pe="file"])' 96 PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([ty pe="file"])'
97 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)' 97 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)'
98 PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):ena bled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled' 98 PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):ena bled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled'
(...skipping 14 matching lines...) Expand all
113 PASS setThenReadSelectorText(':after') is '::after' 113 PASS setThenReadSelectorText(':after') is '::after'
114 PASS setThenReadSelectorText(':before') is '::before' 114 PASS setThenReadSelectorText(':before') is '::before'
115 PASS setThenReadSelectorText(':first-letter') is '::first-letter' 115 PASS setThenReadSelectorText(':first-letter') is '::first-letter'
116 PASS setThenReadSelectorText(':first-line') is '::first-line' 116 PASS setThenReadSelectorText(':first-line') is '::first-line'
117 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )') is ':-webkit-any(a.class1,#id,[attr])' 117 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )') is ':-webkit-any(a.class1,#id,[attr])'
118 118
119 PASS successfullyParsed is true 119 PASS successfullyParsed is true
120 120
121 TEST COMPLETE 121 TEST COMPLETE
122 122
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698