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

Side by Side Diff: LayoutTests/inspector/filtered-item-selection-dialog-filtering-expected.txt

Issue 239283002: DevTools: goto-line functionality should not change selected uisourcecode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add testcase Created 6 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 | Annotate | Revision Log
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 3
4 Empty query matches everything 4 Empty query matches everything
5 Query:"" 5 Query:""
6 Input:["a","bc"] 6 Input:["a","bc"]
7 Output:["a","bc"] 7 Output:["a","bc"]
8 Selected item index: 0
8 9
9 Case sensitive matching 10 Case sensitive matching
10 Query:"aB" 11 Query:"aB"
11 Input:["abc","acB"] 12 Input:["abc","acB"]
12 Output:["abc","acB"] 13 Output:["abc","acB"]
14 Selected item index: 0
13 15
14 Case insensitive matching 16 Case insensitive matching
15 Query:"ab" 17 Query:"ab"
16 Input:["abc","bac","a_B"] 18 Input:["abc","bac","a_B"]
17 Output:["abc","a_B"] 19 Output:["abc","a_B"]
20 Selected item index: 0
18 21
19 Duplicate symbols in query 22 Duplicate symbols in query
20 Query:"aab" 23 Query:"aab"
21 Input:["abab","abaa","caab","baac","fooaab"] 24 Input:["abab","abaa","caab","baac","fooaab"]
22 Output:["abab","caab","fooaab"] 25 Output:["abab","caab","fooaab"]
26 Selected item index: 0
23 27
24 Dangerous input escaping 28 Dangerous input escaping
25 Query:"^[]{}()\\.$*+?|" 29 Query:"^[]{}()\\.$*+?|"
26 Input:["^[]{}()\\.$*+?|","0123456789abcdef"] 30 Input:["^[]{}()\\.$*+?|","0123456789abcdef"]
27 Output:["^[]{}()\\.$*+?|"] 31 Output:["^[]{}()\\.$*+?|"]
32 Selected item index: 0
28 33
34 Item index is not reported in go-to line
35 Query:":1"
36 Input:[":1:2:3.js"]
37 Output:[":1:2:3.js"]
38 Selected item index: null
39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698