Upstream version 10.38.222.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / manifest_tests / file_handlers_invalid_type.json
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         "text/*"
14       ],
15       "title": "Text editor"
16     },
17     "image": {
18       "types": "bar",
19       "extensions": [
20         ".png",
21         ".gif"
22       ],
23       "title": "Image editor"
24     }
25   }
26 }