diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /addon-sdk/source/test/fixtures/preferences | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'addon-sdk/source/test/fixtures/preferences')
4 files changed, 109 insertions, 0 deletions
diff --git a/addon-sdk/source/test/fixtures/preferences/curly-id/package.json b/addon-sdk/source/test/fixtures/preferences/curly-id/package.json new file mode 100644 index 000000000..1d47b4d81 --- /dev/null +++ b/addon-sdk/source/test/fixtures/preferences/curly-id/package.json @@ -0,0 +1,14 @@ +{ + "id": "{34a1eae1-c20a-464f-9b0e-000000000000}", + "fullName": "curly ID test", + "author": "Tomislav Jovanovic", + + "preferences": [{ + "name": "test13", + "type": "integer", + "title": "test13", + "value": 26 + }], + + "preferences-branch": "invalid^branch*name" +} diff --git a/addon-sdk/source/test/fixtures/preferences/no-prefs/package.json b/addon-sdk/source/test/fixtures/preferences/no-prefs/package.json new file mode 100644 index 000000000..7b243b41d --- /dev/null +++ b/addon-sdk/source/test/fixtures/preferences/no-prefs/package.json @@ -0,0 +1,6 @@ +{ + "id": "no-prefs@jetpack", + "title": "No Prefs Test", + "author": "Erik Vold", + "loader": "lib/main.js" +} diff --git a/addon-sdk/source/test/fixtures/preferences/preferences-branch/package.json b/addon-sdk/source/test/fixtures/preferences/preferences-branch/package.json new file mode 100644 index 000000000..b738db7d0 --- /dev/null +++ b/addon-sdk/source/test/fixtures/preferences/preferences-branch/package.json @@ -0,0 +1,14 @@ +{ + "id": "test-preferences-branch", + "fullName": "preferences-branch test", + "author": "Tomislav Jovanovic", + + "preferences": [{ + "name": "test42", + "type": "bool", + "title": "test42", + "value": true + }], + + "preferences-branch": "human-readable" +} diff --git a/addon-sdk/source/test/fixtures/preferences/simple-prefs/package.json b/addon-sdk/source/test/fixtures/preferences/simple-prefs/package.json new file mode 100644 index 000000000..d3b077ddf --- /dev/null +++ b/addon-sdk/source/test/fixtures/preferences/simple-prefs/package.json @@ -0,0 +1,75 @@ +{ + "id": "simple-prefs@jetpack", + "title": "Simple Prefs Test", + "author": "Erik Vold", + "preferences": [{ + "name": "test", + "type": "bool", + "title": "tëst", + "value": false, + "description": "descrïptiön" + }, + { + "name": "test2", + "type": "string", + "title": "tëst", + "value": "ünicødé" + }, + { + "name": "test3", + "type": "menulist", + "title": "\"><test", + "value": "1", + "options": [ + { + "value": "0", + "label": "label1" + }, + { + "value": "1", + "label": "label2" + } + ] + }, + { + "name": "test4", + "type": "radio", + "title": "tëst", + "value": "red", + "options": [ + { + "value": "red", + "label": "rouge" + }, + { + "value": "blue", + "label": "bleu" + } + ] + }, + { + "name": "test5", + "type": "boolint", + "title": "part part, particle", + "value": 7 + }, + { + "name": "test6", + "type": "color", + "title": "pop pop, popscicle", + "value": "#ff5e99" + }, + { + "name": "test7", + "type": "file", + "title": "bike bike", + "value": "bicycle" + }, + { + "name": "test8", + "type": "directory", + "title": "test test", + "value": "1-2-3" + }], + "loader": "lib/main.js" +} |