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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering-expected.txt

Issue 2679483002: DevTools: Create extensible QuickOpen control (Closed)
Patch Set: merge 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 unified diff | Download patch
OLDNEW
1 Check to see that FilteredItemSelectionDialog uses proper regex to filter result s. 1 Check to see that FilteredItemSelectionDialog uses proper regex to filter result s.
2 2
3 test: emptyQueryMatchesEverything 3 test: emptyQueryMatchesEverything
4 Input:["a","bc"] 4 Input:["a","bc"]
5 Query:"" 5 Query:""
6 Output:["a","bc"] 6 Output:["a","bc"]
7 Selected item index: 0 7 Selected item index: 0
8 History:[""] 8 History:[""]
9 9
10 test: caseSensitiveMatching 10 test: caseSensitiveMatching
(...skipping 18 matching lines...) Expand all
29 History:["","aB","ab","aab"] 29 History:["","aB","ab","aab"]
30 30
31 test: dangerousInputEscaping 31 test: dangerousInputEscaping
32 Input:["^[]{}()\\.$*+?|","0123456789abcdef"] 32 Input:["^[]{}()\\.$*+?|","0123456789abcdef"]
33 Query:"^[]{}()\\.$*+?|" 33 Query:"^[]{}()\\.$*+?|"
34 Output:["^[]{}()\\.$*+?|"] 34 Output:["^[]{}()\\.$*+?|"]
35 Selected item index: 0 35 Selected item index: 0
36 History:["","aB","ab","aab","^[]{}()\\.$*+?|"] 36 History:["","aB","ab","aab","^[]{}()\\.$*+?|"]
37 37
38 test: itemIndexIsNotReportedInGoToLine 38 test: itemIndexIsNotReportedInGoToLine
39 Input:[":1:2:3.js"] 39 Input:[]
40 Query:":1" 40 Query:":1"
41 Output:[":1:2:3.js"] 41 Output:[]
42 Selected item index: null 42 Selected item index: null
43 History:["","aB","ab","aab","^[]{}()\\.$*+?|",":1"] 43 History:["","aB","ab","aab","^[]{}()\\.$*+?|",":1"]
44 44
45 test: autoCompleteIsLast 45 test: autoCompleteIsLast
46 Input:["abc","abcd"] 46 Input:["abc","abcd"]
47 Query:"" 47 Query:""
48 Output:["abc","abcd"] 48 Output:["abc","abcd"]
49 Selected item index: 0 49 Selected item index: 0
50 History:["","aB","ab","aab","^[]{}()\\.$*+?|",":1",""] 50 History:["","aB","ab","aab","^[]{}()\\.$*+?|",":1",""]
51 51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698