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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions-expected.txt

Issue 2639703002: DevTools: Console: Provide autocompletions for Maps (Closed)
Patch Set: New RemoteObject api Created 3 years, 10 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 Tests that console correctly finds suggestions in complicated cases. 1 Tests that console correctly finds suggestions in complicated cases.
2 2
3 Checking 'window.do' 3 Checking 'window.do'
4 Found: document 4 Found: document
5 5
6 Checking 'win' 6 Checking 'win'
7 Found: window 7 Found: window
8 8
9 Checking 'window["doc' 9 Checking 'window["doc'
10 Found: "document"] 10 Found: "document"]
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 Checking '// do' 65 Checking '// do'
66 Not Found: document 66 Not Found: document
67 67
68 Checking '["should' 68 Checking '["should'
69 Not Found: shouldNotFindThisFunction 69 Not Found: shouldNotFindThisFunction
70 70
71 Checking 'shou' 71 Checking 'shou'
72 Not Found: should not find this 72 Not Found: should not find this
73 73
74 Checking 'myMap.get('
75 Found: "first")
76 Found: "second")
77 Found: "third")
78
79 Checking 'myMap.get(''
80 Found: 'first')
81 Found: 'second')
82 Found: 'third')
83
84 Checking 'myMap.set('firs'
85 Found: 'first',
86
87 Checking 'myMap.set(should'
88 Found: shouldFindThisFunction
89 Not Found: shouldNotFindThis
90 Not Found: "shouldNotFindThis")
91
92 Checking 'myMap.delete(''
93 Found: 'first')
94 Found: 'second')
95 Found: 'third')
96
74 Checking 'document. bo' 97 Checking 'document. bo'
75 Found: body 98 Found: body
76 99
77 Checking 'document. bo' 100 Checking 'document. bo'
78 Found: body 101 Found: body
79 102
80 Checking 'document. 103 Checking 'document.\nbo'
81 bo'
82 Found: body 104 Found: body
83 105
84 Checking 'document. 106 Checking 'document.\r\nbo'
85 bo'
86 Found: body 107 Found: body
87 108
88 Checking 'document [ 'bo' 109 Checking 'document [ 'bo'
89 Not Found: 'body'] 110 Not Found: 'body']
90 111
91 Checking 'function hey(should' 112 Checking 'function hey(should'
92 Not Found: shouldNotFindThisFunction 113 Not Found: shouldNotFindThisFunction
93 114
94 Checking 'var should' 115 Checking 'var should'
95 Not Found: shouldNotFindThisFunction 116 Not Found: shouldNotFindThisFunction
96 117
97 Checking 'document[[win' 118 Checking 'document[[win'
98 Found: window 119 Found: window
99 120
100 Checking 'document[ [win' 121 Checking 'document[ [win'
101 Found: window 122 Found: window
102 123
103 Checking 'document[ [ win' 124 Checking 'document[ [ win'
104 Found: window 125 Found: window
105 126
106 Checking 'I|mag' 127 Checking 'I|mag'
107 Found: Image 128 Found: Image
108 Found: Infinity 129 Found: Infinity
109 130
110 Checking 'var x = (do|);' 131 Checking 'var x = (do|);'
111 Found: document 132 Found: document
112 133
113 134
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698