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

Side by Side Diff: chrome/test/data/extensions/manifest_tests/file_handlers_invalid_too_many.json

Issue 565423003: Move extensions manifest tests to run in extensions_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (manifest2) fix deps, android Created 6 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
(Empty)
1 {
2 "name": "test",
3 "description": "App with file_handlers manifest.",
4 "version": "1",
5 "app": {
6 "background": {
7 "scripts": ["background.js"]
8 }
9 },
10 "file_handlers": {
11 "text": {
12 "types": [
13 "00/*",
14 "01/*",
15 "02/*",
16 "03/*",
17 "04/*",
18 "05/*",
19 "06/*",
20 "07/*",
21 "08/*",
22 "09/*",
23 "10/*",
24 "11/*",
25 "12/*",
26 "13/*",
27 "14/*",
28 "15/*",
29 "16/*",
30 "17/*",
31 "18/*",
32 "19/*",
33 "20/*",
34 "21/*",
35 "22/*",
36 "23/*",
37 "24/*",
38 "25/*",
39 "26/*",
40 "27/*",
41 "28/*",
42 "29/*",
43 "30/*",
44 "31/*",
45 "32/*",
46 "33/*",
47 "34/*",
48 "35/*",
49 "36/*",
50 "37/*",
51 "38/*",
52 "39/*",
53 "40/*",
54 "41/*",
55 "42/*",
56 "43/*",
57 "44/*",
58 "45/*",
59 "46/*",
60 "47/*",
61 "48/*",
62 "49/*",
63 "50/*",
64 "51/*",
65 "52/*",
66 "53/*",
67 "54/*",
68 "55/*",
69 "56/*",
70 "57/*",
71 "58/*",
72 "59/*",
73 "60/*",
74 "61/*",
75 "62/*",
76 "63/*",
77 "64/*",
78 "65/*",
79 "66/*",
80 "67/*",
81 "68/*",
82 "69/*",
83 "70/*",
84 "71/*",
85 "72/*",
86 "73/*",
87 "74/*",
88 "75/*",
89 "76/*",
90 "77/*",
91 "78/*",
92 "79/*",
93 "80/*",
94 "81/*",
95 "82/*",
96 "83/*",
97 "84/*",
98 "85/*",
99 "86/*",
100 "87/*",
101 "88/*",
102 "89/*",
103 "90/*",
104 "91/*",
105 "92/*",
106 "93/*",
107 "94/*",
108 "95/*",
109 "96/*",
110 "97/*",
111 "98/*",
112 "99/*"
113 ],
114 "title": "Text editor"
115 },
116 "image": {
117 "types": [
118 "00/*",
119 "01/*",
120 "02/*",
121 "03/*",
122 "04/*",
123 "05/*",
124 "06/*",
125 "07/*",
126 "08/*",
127 "09/*",
128 "10/*",
129 "11/*",
130 "12/*",
131 "13/*",
132 "14/*",
133 "15/*",
134 "16/*",
135 "17/*",
136 "18/*",
137 "19/*",
138 "20/*",
139 "21/*",
140 "22/*",
141 "23/*",
142 "24/*",
143 "25/*",
144 "26/*",
145 "27/*",
146 "28/*",
147 "29/*",
148 "30/*",
149 "31/*",
150 "32/*",
151 "33/*",
152 "34/*",
153 "35/*",
154 "36/*",
155 "37/*",
156 "38/*",
157 "39/*",
158 "40/*",
159 "41/*",
160 "42/*",
161 "43/*",
162 "44/*",
163 "45/*",
164 "46/*",
165 "47/*",
166 "48/*",
167 "49/*",
168 "50/*",
169 "51/*",
170 "52/*",
171 "53/*",
172 "54/*",
173 "55/*",
174 "56/*",
175 "57/*",
176 "58/*",
177 "59/*",
178 "60/*",
179 "61/*",
180 "62/*",
181 "63/*",
182 "64/*",
183 "65/*",
184 "66/*",
185 "67/*",
186 "68/*",
187 "69/*",
188 "70/*",
189 "71/*",
190 "72/*",
191 "73/*",
192 "74/*",
193 "75/*",
194 "76/*",
195 "77/*",
196 "78/*",
197 "79/*",
198 "80/*",
199 "81/*",
200 "82/*",
201 "83/*",
202 "84/*",
203 "85/*",
204 "86/*",
205 "87/*",
206 "88/*",
207 "89/*",
208 "90/*",
209 "91/*",
210 "92/*",
211 "93/*",
212 "94/*",
213 "95/*",
214 "96/*",
215 "97/*",
216 "98/*",
217 "99/*"
218 ],
219 "extensions": [
220 ".png",
221 ".gif"
222 ],
223 "title": "Image editor"
224 }
225 }
226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698