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

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

Issue 1305973007: Clean up empty namespace handling and fix empty namespaces in compound selectors (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@defaultns
Patch Set: Created 5 years, 3 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 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'
94 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"])'
95 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)' 95 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)'
96 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'
97 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)'
98 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)'
99 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)'
100 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)'
101 101
102 PASS setThenReadSelectorText('*:active') is ':active' 102 PASS setThenReadSelectorText('*:active') is ':active'
103 PASS setThenReadSelectorText('|a') is 'a' 103 PASS setThenReadSelectorText('|a') is '|a'
104 104
105 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'
106 106
107 PASS setThenReadSelectorText('a+b') is 'a + b' 107 PASS setThenReadSelectorText('a+b') is 'a + b'
108 PASS setThenReadSelectorText('a~b') is 'a ~ b' 108 PASS setThenReadSelectorText('a~b') is 'a ~ b'
109 PASS setThenReadSelectorText('a>b') is 'a > b' 109 PASS setThenReadSelectorText('a>b') is 'a > b'
110 110
111 PASS setThenReadSelectorText(':after') is '::after' 111 PASS setThenReadSelectorText(':after') is '::after'
112 PASS setThenReadSelectorText(':before') is '::before' 112 PASS setThenReadSelectorText(':before') is '::before'
113 PASS setThenReadSelectorText(':first-letter') is '::first-letter' 113 PASS setThenReadSelectorText(':first-letter') is '::first-letter'
114 PASS setThenReadSelectorText(':first-line') is '::first-line' 114 PASS setThenReadSelectorText(':first-line') is '::first-line'
115 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])'
116 116
117 PASS successfullyParsed is true 117 PASS successfullyParsed is true
118 118
119 TEST COMPLETE 119 TEST COMPLETE
120 120
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698