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

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

Issue 8931002: Merge 101998 - "Raw" pseudo selectors don't match if immediately after a child or descendant comb... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 9 years 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 PASS setThenReadSelectorText('::after') is '::after' 61 PASS setThenReadSelectorText('::after') is '::after'
62 PASS setThenReadSelectorText('::before') is '::before' 62 PASS setThenReadSelectorText('::before') is '::before'
63 PASS setThenReadSelectorText('::first-letter') is '::first-letter' 63 PASS setThenReadSelectorText('::first-letter') is '::first-letter'
64 PASS setThenReadSelectorText('::first-line') is '::first-line' 64 PASS setThenReadSelectorText('::first-line') is '::first-line'
65 PASS setThenReadSelectorText('::selection') is '::selection' 65 PASS setThenReadSelectorText('::selection') is '::selection'
66 66
67 PASS setThenReadSelectorText(':-webkit-any-link') is ':-webkit-any-link' 67 PASS setThenReadSelectorText(':-webkit-any-link') is ':-webkit-any-link'
68 PASS setThenReadSelectorText(':-webkit-autofill') is ':-webkit-autofill' 68 PASS setThenReadSelectorText(':-webkit-autofill') is ':-webkit-autofill'
69 PASS setThenReadSelectorText(':-webkit-drag') is ':-webkit-drag' 69 PASS setThenReadSelectorText(':-webkit-drag') is ':-webkit-drag'
70 70
71 PASS setThenReadSelectorText('::-webkit-file-upload-button') is '::-webkit-file- upload-button' 71 PASS setThenReadSelectorText('::-webkit-file-upload-button') is '*::-webkit-file -upload-button'
72 PASS setThenReadSelectorText('::-webkit-search-cancel-button') is '::-webkit-sea rch-cancel-button' 72 PASS setThenReadSelectorText('::-webkit-search-cancel-button') is '*::-webkit-se arch-cancel-button'
73 PASS setThenReadSelectorText('::-webkit-search-decoration') is '::-webkit-search -decoration' 73 PASS setThenReadSelectorText('::-webkit-search-decoration') is '*::-webkit-searc h-decoration'
74 PASS setThenReadSelectorText('::-webkit-search-results-button') is '::-webkit-se arch-results-button' 74 PASS setThenReadSelectorText('::-webkit-search-results-button') is '*::-webkit-s earch-results-button'
75 PASS setThenReadSelectorText('::-webkit-search-results-decoration') is '::-webki t-search-results-decoration' 75 PASS setThenReadSelectorText('::-webkit-search-results-decoration') is '*::-webk it-search-results-decoration'
76 PASS setThenReadSelectorText('::-webkit-slider-thumb') is '::-webkit-slider-thum b' 76 PASS setThenReadSelectorText('::-webkit-slider-thumb') is '*::-webkit-slider-thu mb'
77 77
78 PASS setThenReadSelectorText('a::-webkit-slider-thumb') is 'a::-webkit-slider-th umb' 78 PASS setThenReadSelectorText('a::-webkit-slider-thumb') is 'a::-webkit-slider-th umb'
79 PASS setThenReadSelectorText('a ::-webkit-slider-thumb') is 'a ::-webkit-slider- thumb' 79 PASS setThenReadSelectorText('a ::-webkit-slider-thumb') is 'a *::-webkit-slider -thumb'
80 PASS setThenReadSelectorText('[a]::-webkit-slider-thumb') is '[a]::-webkit-slide r-thumb' 80 PASS setThenReadSelectorText('[a]::-webkit-slider-thumb') is '[a]::-webkit-slide r-thumb'
81 PASS setThenReadSelectorText('[a] ::-webkit-slider-thumb') is '[a] ::-webkit-sli der-thumb' 81 PASS setThenReadSelectorText('[a] ::-webkit-slider-thumb') is '[a] *::-webkit-sl ider-thumb'
82 PASS setThenReadSelectorText('.a::-webkit-slider-thumb') is '.a::-webkit-slider- thumb' 82 PASS setThenReadSelectorText('.a::-webkit-slider-thumb') is '.a::-webkit-slider- thumb'
83 PASS setThenReadSelectorText('.a ::-webkit-slider-thumb') is '.a ::-webkit-slide r-thumb' 83 PASS setThenReadSelectorText('.a ::-webkit-slider-thumb') is '.a *::-webkit-slid er-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-slide r-thumb' 85 PASS setThenReadSelectorText('#a ::-webkit-slider-thumb') is '#a *::-webkit-slid er-thumb'
86 PASS setThenReadSelectorText('* ::-webkit-slider-thumb') is '* *::-webkit-slider -thumb'
87
88 PASS setThenReadSelectorText('a[b]::-webkit-slider-thumb') is 'a[b]::-webkit-sli der-thumb'
89 PASS setThenReadSelectorText('a.b::-webkit-slider-thumb') is 'a.b::-webkit-slide r-thumb'
90 PASS setThenReadSelectorText('a#b::-webkit-slider-thumb') is 'a#b::-webkit-slide r-thumb'
91 PASS setThenReadSelectorText('a[b].c#d::-webkit-slider-thumb') is 'a[b].c#d::-we bkit-slider-thumb'
86 92
87 PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([ty pe="file"]):focus' 93 PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([ty pe="file"]):focus'
88 PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([ty pe="file"])' 94 PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([ty pe="file"])'
89 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)' 95 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)'
90 PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):ena bled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled' 96 PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):ena bled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled'
91 PASS setThenReadSelectorText(':-webkit-any(input[type="file"],a:hover,button:foc us)') is ':-webkit-any(input[type="file"],a:hover,button:focus)' 97 PASS setThenReadSelectorText(':-webkit-any(input[type="file"],a:hover,button:foc us)') is ':-webkit-any(input[type="file"],a:hover,button:focus)'
92 PASS setThenReadSelectorText(':-webkit-any(.class1.class2.class3)') is ':-webkit -any(.class1.class2.class3)' 98 PASS setThenReadSelectorText(':-webkit-any(.class1.class2.class3)') is ':-webkit -any(.class1.class2.class3)'
93 PASS setThenReadSelectorText(':-webkit-any(.class1:hover)') is ':-webkit-any(.cl ass1:hover)' 99 PASS setThenReadSelectorText(':-webkit-any(.class1:hover)') is ':-webkit-any(.cl ass1:hover)'
94 PASS setThenReadSelectorText(':-webkit-any(a.class1.class2.class3:hover)') is ': -webkit-any(a.class1.class2.class3:hover)' 100 PASS setThenReadSelectorText(':-webkit-any(a.class1.class2.class3:hover)') is ': -webkit-any(a.class1.class2.class3:hover)'
95 101
96 PASS setThenReadSelectorText('*:active') is ':active' 102 PASS setThenReadSelectorText('*:active') is ':active'
97 PASS setThenReadSelectorText('|a') is 'a' 103 PASS setThenReadSelectorText('|a') is 'a'
98 104
99 PASS setThenReadSelectorText('input[type=file]:focus') is 'input[type="file"]:fo cus' 105 PASS setThenReadSelectorText('input[type=file]:focus') is 'input[type="file"]:fo cus'
100 106
101 PASS setThenReadSelectorText('a+b') is 'a + b' 107 PASS setThenReadSelectorText('a+b') is 'a + b'
102 PASS setThenReadSelectorText('a~b') is 'a ~ b' 108 PASS setThenReadSelectorText('a~b') is 'a ~ b'
103 PASS setThenReadSelectorText('a>b') is 'a > b' 109 PASS setThenReadSelectorText('a>b') is 'a > b'
104 110
105 PASS setThenReadSelectorText(':after') is '::after' 111 PASS setThenReadSelectorText(':after') is '::after'
106 PASS setThenReadSelectorText(':before') is '::before' 112 PASS setThenReadSelectorText(':before') is '::before'
107 PASS setThenReadSelectorText(':first-letter') is '::first-letter' 113 PASS setThenReadSelectorText(':first-letter') is '::first-letter'
108 PASS setThenReadSelectorText(':first-line') is '::first-line' 114 PASS setThenReadSelectorText(':first-line') is '::first-line'
109 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )') is ':-webkit-any(a.class1,#id,[attr])' 115 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )') is ':-webkit-any(a.class1,#id,[attr])'
110 116
111 PASS successfullyParsed is true 117 PASS successfullyParsed is true
112 118
113 TEST COMPLETE 119 TEST COMPLETE
114 120
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/css-set-selector-text.html ('k') | LayoutTests/fast/css/unknown-pseudo-element-matching.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698