├── .gitignore ├── .gitmodules ├── ChangeLog ├── README.md ├── chromeless ├── chromeless.bat ├── docs ├── css │ ├── apidocs.css │ ├── base.css │ ├── highlight.css │ ├── left.css │ └── right.css ├── img │ ├── code.png │ ├── escape.png │ ├── favicon.png │ └── view_json.png ├── index.html ├── js │ ├── highlight.js │ ├── jquery.js │ ├── main.js │ ├── render.js │ ├── renderapi.js │ └── showdown.js └── md │ └── dev-guide │ ├── 3psw.md │ ├── credits.md │ ├── embedding-web-content.md │ ├── filesystem-access.md │ ├── getting-started.md │ ├── packaging-your-app.md │ ├── persistence.md │ ├── startup-parameters.md │ ├── tutorial-first-app.md │ ├── tutorial-using-require.md │ └── welcome.md ├── examples ├── README.md ├── dragdrop │ ├── appinfo.json │ ├── async.js │ ├── images │ │ ├── cool.png │ │ ├── love.png │ │ └── question.png │ └── index.html ├── first_browser │ ├── appinfo.json │ ├── index.html │ └── jquery-min.js ├── fisheyetabs │ ├── bg.png │ ├── index.html │ ├── jquery-min.js │ └── security.css ├── jsctypes │ ├── .gitignore │ ├── README │ ├── appinfo.json │ ├── index.html │ └── lib │ │ ├── mylib.c │ │ └── mylib.js ├── localstorage │ ├── appinfo.json │ ├── index.html │ ├── jquery-1.6.min.js │ └── main.js ├── thumbnails │ ├── index.html │ └── jquery-min.js ├── ui │ ├── appinfo.json │ ├── async.js │ ├── index.html │ └── office_lobby.mp3 └── webgl │ ├── glutils.js │ ├── index.html │ ├── readme.txt │ ├── sylvester.js │ └── webgl-demo.js ├── impl ├── appifier │ ├── __init__.py │ ├── _appifier.py │ ├── _linux.py │ ├── _osx.py │ ├── _relpath.py │ ├── _win32.py │ └── resources │ │ ├── Info.plist.template │ │ ├── application.ini.template │ │ └── xulrunner.template │ │ ├── chrome.manifest │ │ ├── chromeless │ │ └── content │ │ │ └── chromeless.xul │ │ ├── components │ │ └── harness.js │ │ └── defaults │ │ └── preferences │ │ └── prefs.js ├── chromeless │ ├── __init__.py │ ├── _appinfo.py │ ├── _dirs.py │ └── _version.py ├── cuddlefish │ ├── __init__.py │ ├── bunch.py │ ├── manifest.py │ ├── preflight.py │ ├── prefs.py │ ├── runner.py │ ├── templates.py │ ├── tests │ │ ├── __init__.py │ │ ├── bug-588661-files │ │ │ └── packages │ │ │ │ ├── bar │ │ │ │ ├── lib │ │ │ │ │ └── bar-loader.js │ │ │ │ └── package.json │ │ │ │ └── foo │ │ │ │ ├── lib │ │ │ │ └── foo-loader.js │ │ │ │ └── package.json │ │ ├── static-files │ │ │ ├── docs │ │ │ │ └── APIsample.md │ │ │ ├── packages │ │ │ │ ├── aardvark │ │ │ │ │ ├── lib │ │ │ │ │ │ └── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── barbeque │ │ │ │ │ ├── lib │ │ │ │ │ │ └── bar-module.js │ │ │ │ │ └── package.json │ │ │ │ └── jetpack-core │ │ │ │ │ ├── lib │ │ │ │ │ └── loader.js │ │ │ │ │ └── package.json │ │ │ └── xpi-template │ │ │ │ └── components │ │ │ │ └── harness.js │ │ ├── test_apiparser.py │ │ ├── test_manifest.py │ │ ├── test_packaging.py │ │ ├── test_preflight.py │ │ ├── test_rdf.py │ │ ├── test_runner.py │ │ ├── test_server.py │ │ └── test_xpi.py │ ├── version.py │ └── version_comparator.py ├── docgen │ ├── __init__.py │ ├── _docgen.py │ ├── docstract.py │ └── tests │ │ ├── .gitignore │ │ ├── class_basic.js │ │ ├── class_basic.out │ │ ├── class_full.js │ │ ├── class_full.out │ │ ├── class_with_constructor.js │ │ ├── class_with_constructor.out │ │ ├── class_with_prop_and_func.js │ │ ├── class_with_prop_and_func.out │ │ ├── function_basic.js │ │ ├── function_basic.out │ │ ├── function_omit_name.js │ │ ├── function_omit_name.out │ │ ├── function_omit_name_and_tag.js │ │ ├── function_omit_name_and_tag.out │ │ ├── module_basic.js │ │ ├── module_basic.out │ │ ├── module_explicit.js │ │ ├── module_explicit.out │ │ ├── module_inside_class.js │ │ ├── module_inside_class.out │ │ ├── module_override_name.js │ │ ├── module_override_name.out │ │ ├── params_one_way.js │ │ ├── params_one_way.out │ │ ├── params_type_first.js │ │ ├── params_type_first.out │ │ ├── params_type_first_newline.js │ │ ├── params_type_first_newline.out │ │ ├── params_type_last.js │ │ ├── params_type_last.out │ │ ├── params_type_last_newline.js │ │ ├── params_type_last_newline.out │ │ ├── property_implicit_with_type.js │ │ ├── property_implicit_with_type.out │ │ ├── property_omit_name_and_tag.js │ │ ├── property_omit_name_and_tag.out │ │ ├── property_type_first.js │ │ └── property_type_first.out ├── ecdsa │ ├── LICENSE │ ├── __init__.py │ ├── curves.py │ ├── der.py │ ├── ecdsa.py │ ├── ellipticcurve.py │ ├── keys.py │ ├── numbertheory.py │ ├── test_pyecdsa.py │ └── util.py ├── markdown │ ├── __init__.py │ ├── blockparser.py │ ├── blockprocessors.py │ ├── commandline.py │ ├── docs │ │ ├── AUTHORS │ │ └── LICENSE │ ├── etree_loader.py │ ├── extensions │ │ ├── __init__.py │ │ ├── abbr.py │ │ ├── codehilite.py │ │ ├── def_list.py │ │ ├── extra.py │ │ ├── fenced_code.py │ │ ├── footnotes.py │ │ ├── headerid.py │ │ ├── html_tidy.py │ │ ├── imagelinks.py │ │ ├── meta.py │ │ ├── rss.py │ │ ├── tables.py │ │ ├── toc.py │ │ └── wikilinks.py │ ├── html4.py │ ├── inlinepatterns.py │ ├── odict.py │ ├── postprocessors.py │ ├── preprocessors.py │ └── treeprocessors.py ├── mozfetcher │ ├── __init__.py │ ├── _config.py │ └── _fetcher.py ├── mozrunner │ ├── __init__.py │ ├── killableprocess.py │ ├── qijo.py │ ├── winprocess.py │ └── wpk.py └── simplejson │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── scanner.py │ └── tool.py ├── modules ├── internal │ ├── api-utils.js │ ├── chromeless-sandbox-window.js │ ├── cortex.js │ ├── cuddlefish.js │ ├── errors.js │ ├── es5.js │ ├── events.js │ ├── light-traits.js │ ├── main.js │ ├── memory.js │ ├── plain-text-console.js │ ├── prevent-navigation.js │ ├── pure_js_events.js │ ├── securable-module.js │ ├── simple-feature.js │ ├── test_harness │ │ ├── find-tests.js │ │ ├── harness.js │ │ ├── run-tests.js │ │ ├── unit-test-finder.js │ │ └── unit-test.js │ ├── traits.js │ ├── traits │ │ └── core.js │ └── xpcom.js └── lib │ ├── app-paths.js │ ├── app-strings.js │ ├── appinfo.js │ ├── byte-streams.js │ ├── canvas-proxy.js │ ├── child_process.js │ ├── clipboard.js │ ├── collection.js │ ├── console-service.js │ ├── content.js │ ├── content │ ├── loader.js │ ├── symbiont.js │ └── worker.js │ ├── cookie.js │ ├── custom-protocol.js │ ├── dictionary.js │ ├── dragdrop.js │ ├── favicon.js │ ├── file-picker.js │ ├── file.js │ ├── fs.js │ ├── fullscreen.js │ ├── hidden-frame-xulrunner.js │ ├── hidden-frame.js │ ├── hotkey.js │ ├── list.js │ ├── match-pattern.js │ ├── menu.js │ ├── mime.js │ ├── net.js │ ├── notifications.js │ ├── observer-service.js │ ├── path.js │ ├── preferences-service.js │ ├── process.js │ ├── request.js │ ├── self.js │ ├── tests │ ├── api-utils.test.js │ ├── app-strings.test.js │ ├── byte-streams.test.js │ ├── clipboard.test.js │ ├── collection.test.js │ ├── content-loader.test.js │ ├── content-symbiont.test.js │ ├── content-window.test.js │ ├── content-worker.test.js │ ├── cuddlefish.test.js │ ├── custom-protocol.test.js │ ├── dictionary.test.js │ ├── e10s-porting.test.js │ ├── e10s.test.js │ ├── errors.test.js │ ├── es5.test.js │ ├── events.test.js │ ├── file.test.js │ ├── function-utils.test.js │ ├── globals.test.js │ ├── hidden-frame.test.js │ ├── list.test.js │ ├── main.test.js │ ├── manifest.test.js │ ├── match-pattern.test.js │ ├── memory.test.js │ ├── net-events.test.js │ ├── net-pingpong.test.js │ ├── net.test.js │ ├── notifications.test.js │ ├── observer-service.test.js │ ├── packaging.test.js │ ├── page-worker.test.js │ ├── path.test.js │ ├── plain-text-console.test.js │ ├── preferences-service.test.js │ ├── registry.test.js │ ├── request.test.js │ ├── securable-module.test.js │ ├── self.test.js │ ├── simple-feature.test.js │ ├── tab-browser.test.js │ ├── text-streams.test.js │ ├── timer.test.js │ ├── traceback.test.js │ ├── traits-core.test.js │ ├── traits.test.js │ ├── unit-test.test.js │ ├── unload-2.test.js │ ├── unload.test.js │ ├── url.test.js │ ├── version.test.js │ ├── window-loader.test.js │ ├── window-utils.test.js │ ├── xhr.test.js │ ├── xpcom.test.js │ └── xul-app.test.js │ ├── text-streams.js │ ├── timer.js │ ├── traceback.js │ ├── tray.js │ ├── ui.js │ ├── unload.js │ ├── url.js │ ├── utils │ ├── data.js │ ├── function.js │ ├── registry.js │ └── thumbnail.js │ ├── web-content.js │ ├── window-utils.js │ ├── windows │ ├── dom.js │ ├── loader.js │ └── tabs.js │ ├── xhr.js │ └── xul-app.js └── tests ├── alert └── index.html ├── canvas_thumbnails ├── index.html └── jquery-min.js ├── child_process └── index.html ├── close ├── index.html └── test-app.js ├── console ├── index.html └── test-app.js ├── cookies └── index.html ├── dialog_checks └── index.html ├── dragdrop ├── dragdrop-in.js ├── dragdrop-out.js └── index.html ├── favicon ├── appinfo.json ├── index.html └── jquery-min.js ├── file_list_dir └── index.html ├── file_picker └── index.html ├── file_watcher └── index.html ├── file_write └── index.html ├── fixupurl └── index.html ├── frame_buster ├── index.html ├── inner-page.html └── test-app.js ├── fullscreen ├── index.html └── test-app.js ├── iframe_custom_events ├── index.html └── inner-page.html ├── iframe_dig ├── appinfo.json ├── index.html ├── jquery-min.js └── test-app.js ├── iframe_inheritance ├── index.html └── inner-page.html ├── iframe_injection ├── index.html └── inner-page.html ├── iframe_zoom ├── appinfo.json └── index.html ├── loader ├── appinfo.json ├── index.html └── lib │ ├── addr.js │ ├── memory.js │ ├── plain-text-console.js │ └── unload.js ├── many_iframes ├── index.html ├── inner-page.html └── inner_page1.html ├── menu ├── appinfo.json ├── icons │ └── favorite.png ├── index.html ├── jquery-min.js └── perf_test.html ├── menu_not ├── appinfo.json └── index.html ├── mimeTypes └── index.html ├── modules ├── appinfo.json ├── index.html └── lib │ └── addr.js ├── new_window ├── appinfo.json ├── index.html └── new_window.html ├── noscript ├── index.html ├── noscript.html └── test-app.js ├── onload ├── index.html └── test-app.js ├── progress_events ├── index.html └── test-app.js ├── request ├── appinfo.json ├── index.html └── jquery-min.js ├── requirejs ├── add.js ├── appinfo.json ├── index.html ├── main.js ├── require.js ├── require.js.orig └── require.js.patch ├── resizable ├── appinfo.json └── index.html ├── resize └── index.html ├── simple_storage └── index.html ├── target_top ├── index.html └── inner-page.html └── window_title ├── index.html └── inner.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/.gitmodules -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/ChangeLog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/README.md -------------------------------------------------------------------------------- /chromeless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/chromeless -------------------------------------------------------------------------------- /chromeless.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | python %~dp0chromeless %1 %2 %3 %4 %5 %6 %7 %8 %9 4 | -------------------------------------------------------------------------------- /docs/css/apidocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/css/apidocs.css -------------------------------------------------------------------------------- /docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/css/base.css -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/css/left.css -------------------------------------------------------------------------------- /docs/css/right.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/css/right.css -------------------------------------------------------------------------------- /docs/img/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/img/code.png -------------------------------------------------------------------------------- /docs/img/escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/img/escape.png -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/view_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/img/view_json.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/js/highlight.js -------------------------------------------------------------------------------- /docs/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/js/jquery.js -------------------------------------------------------------------------------- /docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/js/main.js -------------------------------------------------------------------------------- /docs/js/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/js/render.js -------------------------------------------------------------------------------- /docs/js/renderapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/js/renderapi.js -------------------------------------------------------------------------------- /docs/js/showdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/js/showdown.js -------------------------------------------------------------------------------- /docs/md/dev-guide/3psw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/3psw.md -------------------------------------------------------------------------------- /docs/md/dev-guide/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/credits.md -------------------------------------------------------------------------------- /docs/md/dev-guide/embedding-web-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/embedding-web-content.md -------------------------------------------------------------------------------- /docs/md/dev-guide/filesystem-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/filesystem-access.md -------------------------------------------------------------------------------- /docs/md/dev-guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/getting-started.md -------------------------------------------------------------------------------- /docs/md/dev-guide/packaging-your-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/packaging-your-app.md -------------------------------------------------------------------------------- /docs/md/dev-guide/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/persistence.md -------------------------------------------------------------------------------- /docs/md/dev-guide/startup-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/startup-parameters.md -------------------------------------------------------------------------------- /docs/md/dev-guide/tutorial-first-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/tutorial-first-app.md -------------------------------------------------------------------------------- /docs/md/dev-guide/tutorial-using-require.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/tutorial-using-require.md -------------------------------------------------------------------------------- /docs/md/dev-guide/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/docs/md/dev-guide/welcome.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/dragdrop/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/dragdrop/appinfo.json -------------------------------------------------------------------------------- /examples/dragdrop/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/dragdrop/async.js -------------------------------------------------------------------------------- /examples/dragdrop/images/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/dragdrop/images/cool.png -------------------------------------------------------------------------------- /examples/dragdrop/images/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/dragdrop/images/love.png -------------------------------------------------------------------------------- /examples/dragdrop/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/dragdrop/images/question.png -------------------------------------------------------------------------------- /examples/dragdrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/dragdrop/index.html -------------------------------------------------------------------------------- /examples/first_browser/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/first_browser/appinfo.json -------------------------------------------------------------------------------- /examples/first_browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/first_browser/index.html -------------------------------------------------------------------------------- /examples/first_browser/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/first_browser/jquery-min.js -------------------------------------------------------------------------------- /examples/fisheyetabs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/fisheyetabs/bg.png -------------------------------------------------------------------------------- /examples/fisheyetabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/fisheyetabs/index.html -------------------------------------------------------------------------------- /examples/fisheyetabs/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/fisheyetabs/jquery-min.js -------------------------------------------------------------------------------- /examples/fisheyetabs/security.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/fisheyetabs/security.css -------------------------------------------------------------------------------- /examples/jsctypes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/jsctypes/.gitignore -------------------------------------------------------------------------------- /examples/jsctypes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/jsctypes/README -------------------------------------------------------------------------------- /examples/jsctypes/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/jsctypes/appinfo.json -------------------------------------------------------------------------------- /examples/jsctypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/jsctypes/index.html -------------------------------------------------------------------------------- /examples/jsctypes/lib/mylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/jsctypes/lib/mylib.c -------------------------------------------------------------------------------- /examples/jsctypes/lib/mylib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/jsctypes/lib/mylib.js -------------------------------------------------------------------------------- /examples/localstorage/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/localstorage/appinfo.json -------------------------------------------------------------------------------- /examples/localstorage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/localstorage/index.html -------------------------------------------------------------------------------- /examples/localstorage/jquery-1.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/localstorage/jquery-1.6.min.js -------------------------------------------------------------------------------- /examples/localstorage/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/localstorage/main.js -------------------------------------------------------------------------------- /examples/thumbnails/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/thumbnails/index.html -------------------------------------------------------------------------------- /examples/thumbnails/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/thumbnails/jquery-min.js -------------------------------------------------------------------------------- /examples/ui/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/ui/appinfo.json -------------------------------------------------------------------------------- /examples/ui/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/ui/async.js -------------------------------------------------------------------------------- /examples/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/ui/index.html -------------------------------------------------------------------------------- /examples/ui/office_lobby.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/ui/office_lobby.mp3 -------------------------------------------------------------------------------- /examples/webgl/glutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/webgl/glutils.js -------------------------------------------------------------------------------- /examples/webgl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/webgl/index.html -------------------------------------------------------------------------------- /examples/webgl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/webgl/readme.txt -------------------------------------------------------------------------------- /examples/webgl/sylvester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/webgl/sylvester.js -------------------------------------------------------------------------------- /examples/webgl/webgl-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/examples/webgl/webgl-demo.js -------------------------------------------------------------------------------- /impl/appifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/__init__.py -------------------------------------------------------------------------------- /impl/appifier/_appifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/_appifier.py -------------------------------------------------------------------------------- /impl/appifier/_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/_linux.py -------------------------------------------------------------------------------- /impl/appifier/_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/_osx.py -------------------------------------------------------------------------------- /impl/appifier/_relpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/_relpath.py -------------------------------------------------------------------------------- /impl/appifier/_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/_win32.py -------------------------------------------------------------------------------- /impl/appifier/resources/Info.plist.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/resources/Info.plist.template -------------------------------------------------------------------------------- /impl/appifier/resources/application.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/resources/application.ini.template -------------------------------------------------------------------------------- /impl/appifier/resources/xulrunner.template/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/resources/xulrunner.template/chrome.manifest -------------------------------------------------------------------------------- /impl/appifier/resources/xulrunner.template/chromeless/content/chromeless.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/resources/xulrunner.template/chromeless/content/chromeless.xul -------------------------------------------------------------------------------- /impl/appifier/resources/xulrunner.template/components/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/resources/xulrunner.template/components/harness.js -------------------------------------------------------------------------------- /impl/appifier/resources/xulrunner.template/defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/appifier/resources/xulrunner.template/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /impl/chromeless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/chromeless/__init__.py -------------------------------------------------------------------------------- /impl/chromeless/_appinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/chromeless/_appinfo.py -------------------------------------------------------------------------------- /impl/chromeless/_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/chromeless/_dirs.py -------------------------------------------------------------------------------- /impl/chromeless/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/chromeless/_version.py -------------------------------------------------------------------------------- /impl/cuddlefish/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/__init__.py -------------------------------------------------------------------------------- /impl/cuddlefish/bunch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/bunch.py -------------------------------------------------------------------------------- /impl/cuddlefish/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/manifest.py -------------------------------------------------------------------------------- /impl/cuddlefish/preflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/preflight.py -------------------------------------------------------------------------------- /impl/cuddlefish/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/prefs.py -------------------------------------------------------------------------------- /impl/cuddlefish/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/runner.py -------------------------------------------------------------------------------- /impl/cuddlefish/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/templates.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/__init__.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/bug-588661-files/packages/bar/lib/bar-loader.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /impl/cuddlefish/tests/bug-588661-files/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/bug-588661-files/packages/bar/package.json -------------------------------------------------------------------------------- /impl/cuddlefish/tests/bug-588661-files/packages/foo/lib/foo-loader.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /impl/cuddlefish/tests/bug-588661-files/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/bug-588661-files/packages/foo/package.json -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/docs/APIsample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/docs/APIsample.md -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/packages/aardvark/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/packages/aardvark/lib/main.js -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/packages/aardvark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/packages/aardvark/package.json -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/packages/barbeque/lib/bar-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/packages/barbeque/lib/bar-module.js -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/packages/barbeque/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A package used by 'aardvark' as a library." 3 | } 4 | -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/packages/jetpack-core/lib/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/packages/jetpack-core/lib/loader.js -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/packages/jetpack-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/packages/jetpack-core/package.json -------------------------------------------------------------------------------- /impl/cuddlefish/tests/static-files/xpi-template/components/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/static-files/xpi-template/components/harness.js -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_apiparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_apiparser.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_manifest.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_packaging.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_preflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_preflight.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_rdf.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_runner.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_server.py -------------------------------------------------------------------------------- /impl/cuddlefish/tests/test_xpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/tests/test_xpi.py -------------------------------------------------------------------------------- /impl/cuddlefish/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/version.py -------------------------------------------------------------------------------- /impl/cuddlefish/version_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/cuddlefish/version_comparator.py -------------------------------------------------------------------------------- /impl/docgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/__init__.py -------------------------------------------------------------------------------- /impl/docgen/_docgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/_docgen.py -------------------------------------------------------------------------------- /impl/docgen/docstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/docstract.py -------------------------------------------------------------------------------- /impl/docgen/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /*.outactual 2 | -------------------------------------------------------------------------------- /impl/docgen/tests/class_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_basic.js -------------------------------------------------------------------------------- /impl/docgen/tests/class_basic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_basic.out -------------------------------------------------------------------------------- /impl/docgen/tests/class_full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_full.js -------------------------------------------------------------------------------- /impl/docgen/tests/class_full.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_full.out -------------------------------------------------------------------------------- /impl/docgen/tests/class_with_constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_with_constructor.js -------------------------------------------------------------------------------- /impl/docgen/tests/class_with_constructor.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_with_constructor.out -------------------------------------------------------------------------------- /impl/docgen/tests/class_with_prop_and_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_with_prop_and_func.js -------------------------------------------------------------------------------- /impl/docgen/tests/class_with_prop_and_func.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/class_with_prop_and_func.out -------------------------------------------------------------------------------- /impl/docgen/tests/function_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/function_basic.js -------------------------------------------------------------------------------- /impl/docgen/tests/function_basic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/function_basic.out -------------------------------------------------------------------------------- /impl/docgen/tests/function_omit_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/function_omit_name.js -------------------------------------------------------------------------------- /impl/docgen/tests/function_omit_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/function_omit_name.out -------------------------------------------------------------------------------- /impl/docgen/tests/function_omit_name_and_tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/function_omit_name_and_tag.js -------------------------------------------------------------------------------- /impl/docgen/tests/function_omit_name_and_tag.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/function_omit_name_and_tag.out -------------------------------------------------------------------------------- /impl/docgen/tests/module_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_basic.js -------------------------------------------------------------------------------- /impl/docgen/tests/module_basic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_basic.out -------------------------------------------------------------------------------- /impl/docgen/tests/module_explicit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_explicit.js -------------------------------------------------------------------------------- /impl/docgen/tests/module_explicit.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_explicit.out -------------------------------------------------------------------------------- /impl/docgen/tests/module_inside_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_inside_class.js -------------------------------------------------------------------------------- /impl/docgen/tests/module_inside_class.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_inside_class.out -------------------------------------------------------------------------------- /impl/docgen/tests/module_override_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_override_name.js -------------------------------------------------------------------------------- /impl/docgen/tests/module_override_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/module_override_name.out -------------------------------------------------------------------------------- /impl/docgen/tests/params_one_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_one_way.js -------------------------------------------------------------------------------- /impl/docgen/tests/params_one_way.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_one_way.out -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_first.js -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_first.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_first.out -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_first_newline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_first_newline.js -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_first_newline.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_first_newline.out -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_last.js -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_last.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_last.out -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_last_newline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_last_newline.js -------------------------------------------------------------------------------- /impl/docgen/tests/params_type_last_newline.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/params_type_last_newline.out -------------------------------------------------------------------------------- /impl/docgen/tests/property_implicit_with_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/property_implicit_with_type.js -------------------------------------------------------------------------------- /impl/docgen/tests/property_implicit_with_type.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/property_implicit_with_type.out -------------------------------------------------------------------------------- /impl/docgen/tests/property_omit_name_and_tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/property_omit_name_and_tag.js -------------------------------------------------------------------------------- /impl/docgen/tests/property_omit_name_and_tag.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/property_omit_name_and_tag.out -------------------------------------------------------------------------------- /impl/docgen/tests/property_type_first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/property_type_first.js -------------------------------------------------------------------------------- /impl/docgen/tests/property_type_first.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/docgen/tests/property_type_first.out -------------------------------------------------------------------------------- /impl/ecdsa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/LICENSE -------------------------------------------------------------------------------- /impl/ecdsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/__init__.py -------------------------------------------------------------------------------- /impl/ecdsa/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/curves.py -------------------------------------------------------------------------------- /impl/ecdsa/der.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/der.py -------------------------------------------------------------------------------- /impl/ecdsa/ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/ecdsa.py -------------------------------------------------------------------------------- /impl/ecdsa/ellipticcurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/ellipticcurve.py -------------------------------------------------------------------------------- /impl/ecdsa/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/keys.py -------------------------------------------------------------------------------- /impl/ecdsa/numbertheory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/numbertheory.py -------------------------------------------------------------------------------- /impl/ecdsa/test_pyecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/test_pyecdsa.py -------------------------------------------------------------------------------- /impl/ecdsa/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/ecdsa/util.py -------------------------------------------------------------------------------- /impl/markdown/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/__init__.py -------------------------------------------------------------------------------- /impl/markdown/blockparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/blockparser.py -------------------------------------------------------------------------------- /impl/markdown/blockprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/blockprocessors.py -------------------------------------------------------------------------------- /impl/markdown/commandline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/commandline.py -------------------------------------------------------------------------------- /impl/markdown/docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/docs/AUTHORS -------------------------------------------------------------------------------- /impl/markdown/docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/docs/LICENSE -------------------------------------------------------------------------------- /impl/markdown/etree_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/etree_loader.py -------------------------------------------------------------------------------- /impl/markdown/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /impl/markdown/extensions/abbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/abbr.py -------------------------------------------------------------------------------- /impl/markdown/extensions/codehilite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/codehilite.py -------------------------------------------------------------------------------- /impl/markdown/extensions/def_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/def_list.py -------------------------------------------------------------------------------- /impl/markdown/extensions/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/extra.py -------------------------------------------------------------------------------- /impl/markdown/extensions/fenced_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/fenced_code.py -------------------------------------------------------------------------------- /impl/markdown/extensions/footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/footnotes.py -------------------------------------------------------------------------------- /impl/markdown/extensions/headerid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/headerid.py -------------------------------------------------------------------------------- /impl/markdown/extensions/html_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/html_tidy.py -------------------------------------------------------------------------------- /impl/markdown/extensions/imagelinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/imagelinks.py -------------------------------------------------------------------------------- /impl/markdown/extensions/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/meta.py -------------------------------------------------------------------------------- /impl/markdown/extensions/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/rss.py -------------------------------------------------------------------------------- /impl/markdown/extensions/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/tables.py -------------------------------------------------------------------------------- /impl/markdown/extensions/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/toc.py -------------------------------------------------------------------------------- /impl/markdown/extensions/wikilinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/extensions/wikilinks.py -------------------------------------------------------------------------------- /impl/markdown/html4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/html4.py -------------------------------------------------------------------------------- /impl/markdown/inlinepatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/inlinepatterns.py -------------------------------------------------------------------------------- /impl/markdown/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/odict.py -------------------------------------------------------------------------------- /impl/markdown/postprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/postprocessors.py -------------------------------------------------------------------------------- /impl/markdown/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/preprocessors.py -------------------------------------------------------------------------------- /impl/markdown/treeprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/markdown/treeprocessors.py -------------------------------------------------------------------------------- /impl/mozfetcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozfetcher/__init__.py -------------------------------------------------------------------------------- /impl/mozfetcher/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozfetcher/_config.py -------------------------------------------------------------------------------- /impl/mozfetcher/_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozfetcher/_fetcher.py -------------------------------------------------------------------------------- /impl/mozrunner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozrunner/__init__.py -------------------------------------------------------------------------------- /impl/mozrunner/killableprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozrunner/killableprocess.py -------------------------------------------------------------------------------- /impl/mozrunner/qijo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozrunner/qijo.py -------------------------------------------------------------------------------- /impl/mozrunner/winprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozrunner/winprocess.py -------------------------------------------------------------------------------- /impl/mozrunner/wpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/mozrunner/wpk.py -------------------------------------------------------------------------------- /impl/simplejson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/simplejson/__init__.py -------------------------------------------------------------------------------- /impl/simplejson/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/simplejson/decoder.py -------------------------------------------------------------------------------- /impl/simplejson/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/simplejson/encoder.py -------------------------------------------------------------------------------- /impl/simplejson/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/simplejson/scanner.py -------------------------------------------------------------------------------- /impl/simplejson/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/impl/simplejson/tool.py -------------------------------------------------------------------------------- /modules/internal/api-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/api-utils.js -------------------------------------------------------------------------------- /modules/internal/chromeless-sandbox-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/chromeless-sandbox-window.js -------------------------------------------------------------------------------- /modules/internal/cortex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/cortex.js -------------------------------------------------------------------------------- /modules/internal/cuddlefish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/cuddlefish.js -------------------------------------------------------------------------------- /modules/internal/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/errors.js -------------------------------------------------------------------------------- /modules/internal/es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/es5.js -------------------------------------------------------------------------------- /modules/internal/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/events.js -------------------------------------------------------------------------------- /modules/internal/light-traits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/light-traits.js -------------------------------------------------------------------------------- /modules/internal/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/main.js -------------------------------------------------------------------------------- /modules/internal/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/memory.js -------------------------------------------------------------------------------- /modules/internal/plain-text-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/plain-text-console.js -------------------------------------------------------------------------------- /modules/internal/prevent-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/prevent-navigation.js -------------------------------------------------------------------------------- /modules/internal/pure_js_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/pure_js_events.js -------------------------------------------------------------------------------- /modules/internal/securable-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/securable-module.js -------------------------------------------------------------------------------- /modules/internal/simple-feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/simple-feature.js -------------------------------------------------------------------------------- /modules/internal/test_harness/find-tests.js: -------------------------------------------------------------------------------- 1 | // this file left intentionally blank 2 | -------------------------------------------------------------------------------- /modules/internal/test_harness/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/test_harness/harness.js -------------------------------------------------------------------------------- /modules/internal/test_harness/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/test_harness/run-tests.js -------------------------------------------------------------------------------- /modules/internal/test_harness/unit-test-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/test_harness/unit-test-finder.js -------------------------------------------------------------------------------- /modules/internal/test_harness/unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/test_harness/unit-test.js -------------------------------------------------------------------------------- /modules/internal/traits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/traits.js -------------------------------------------------------------------------------- /modules/internal/traits/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/traits/core.js -------------------------------------------------------------------------------- /modules/internal/xpcom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/internal/xpcom.js -------------------------------------------------------------------------------- /modules/lib/app-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/app-paths.js -------------------------------------------------------------------------------- /modules/lib/app-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/app-strings.js -------------------------------------------------------------------------------- /modules/lib/appinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/appinfo.js -------------------------------------------------------------------------------- /modules/lib/byte-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/byte-streams.js -------------------------------------------------------------------------------- /modules/lib/canvas-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/canvas-proxy.js -------------------------------------------------------------------------------- /modules/lib/child_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/child_process.js -------------------------------------------------------------------------------- /modules/lib/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/clipboard.js -------------------------------------------------------------------------------- /modules/lib/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/collection.js -------------------------------------------------------------------------------- /modules/lib/console-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/console-service.js -------------------------------------------------------------------------------- /modules/lib/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/content.js -------------------------------------------------------------------------------- /modules/lib/content/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/content/loader.js -------------------------------------------------------------------------------- /modules/lib/content/symbiont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/content/symbiont.js -------------------------------------------------------------------------------- /modules/lib/content/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/content/worker.js -------------------------------------------------------------------------------- /modules/lib/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/cookie.js -------------------------------------------------------------------------------- /modules/lib/custom-protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/custom-protocol.js -------------------------------------------------------------------------------- /modules/lib/dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/dictionary.js -------------------------------------------------------------------------------- /modules/lib/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/dragdrop.js -------------------------------------------------------------------------------- /modules/lib/favicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/favicon.js -------------------------------------------------------------------------------- /modules/lib/file-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/file-picker.js -------------------------------------------------------------------------------- /modules/lib/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/file.js -------------------------------------------------------------------------------- /modules/lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/fs.js -------------------------------------------------------------------------------- /modules/lib/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/fullscreen.js -------------------------------------------------------------------------------- /modules/lib/hidden-frame-xulrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/hidden-frame-xulrunner.js -------------------------------------------------------------------------------- /modules/lib/hidden-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/hidden-frame.js -------------------------------------------------------------------------------- /modules/lib/hotkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/hotkey.js -------------------------------------------------------------------------------- /modules/lib/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/list.js -------------------------------------------------------------------------------- /modules/lib/match-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/match-pattern.js -------------------------------------------------------------------------------- /modules/lib/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/menu.js -------------------------------------------------------------------------------- /modules/lib/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/mime.js -------------------------------------------------------------------------------- /modules/lib/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/net.js -------------------------------------------------------------------------------- /modules/lib/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/notifications.js -------------------------------------------------------------------------------- /modules/lib/observer-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/observer-service.js -------------------------------------------------------------------------------- /modules/lib/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/path.js -------------------------------------------------------------------------------- /modules/lib/preferences-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/preferences-service.js -------------------------------------------------------------------------------- /modules/lib/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/process.js -------------------------------------------------------------------------------- /modules/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/request.js -------------------------------------------------------------------------------- /modules/lib/self.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/self.js -------------------------------------------------------------------------------- /modules/lib/tests/api-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/api-utils.test.js -------------------------------------------------------------------------------- /modules/lib/tests/app-strings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/app-strings.test.js -------------------------------------------------------------------------------- /modules/lib/tests/byte-streams.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/byte-streams.test.js -------------------------------------------------------------------------------- /modules/lib/tests/clipboard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/clipboard.test.js -------------------------------------------------------------------------------- /modules/lib/tests/collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/collection.test.js -------------------------------------------------------------------------------- /modules/lib/tests/content-loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/content-loader.test.js -------------------------------------------------------------------------------- /modules/lib/tests/content-symbiont.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/content-symbiont.test.js -------------------------------------------------------------------------------- /modules/lib/tests/content-window.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/content-window.test.js -------------------------------------------------------------------------------- /modules/lib/tests/content-worker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/content-worker.test.js -------------------------------------------------------------------------------- /modules/lib/tests/cuddlefish.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/cuddlefish.test.js -------------------------------------------------------------------------------- /modules/lib/tests/custom-protocol.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/custom-protocol.test.js -------------------------------------------------------------------------------- /modules/lib/tests/dictionary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/dictionary.test.js -------------------------------------------------------------------------------- /modules/lib/tests/e10s-porting.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/e10s-porting.test.js -------------------------------------------------------------------------------- /modules/lib/tests/e10s.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/e10s.test.js -------------------------------------------------------------------------------- /modules/lib/tests/errors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/errors.test.js -------------------------------------------------------------------------------- /modules/lib/tests/es5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/es5.test.js -------------------------------------------------------------------------------- /modules/lib/tests/events.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/events.test.js -------------------------------------------------------------------------------- /modules/lib/tests/file.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/file.test.js -------------------------------------------------------------------------------- /modules/lib/tests/function-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/function-utils.test.js -------------------------------------------------------------------------------- /modules/lib/tests/globals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/globals.test.js -------------------------------------------------------------------------------- /modules/lib/tests/hidden-frame.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/hidden-frame.test.js -------------------------------------------------------------------------------- /modules/lib/tests/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/list.test.js -------------------------------------------------------------------------------- /modules/lib/tests/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/main.test.js -------------------------------------------------------------------------------- /modules/lib/tests/manifest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/manifest.test.js -------------------------------------------------------------------------------- /modules/lib/tests/match-pattern.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/match-pattern.test.js -------------------------------------------------------------------------------- /modules/lib/tests/memory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/memory.test.js -------------------------------------------------------------------------------- /modules/lib/tests/net-events.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/net-events.test.js -------------------------------------------------------------------------------- /modules/lib/tests/net-pingpong.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/net-pingpong.test.js -------------------------------------------------------------------------------- /modules/lib/tests/net.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/net.test.js -------------------------------------------------------------------------------- /modules/lib/tests/notifications.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/notifications.test.js -------------------------------------------------------------------------------- /modules/lib/tests/observer-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/observer-service.test.js -------------------------------------------------------------------------------- /modules/lib/tests/packaging.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/packaging.test.js -------------------------------------------------------------------------------- /modules/lib/tests/page-worker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/page-worker.test.js -------------------------------------------------------------------------------- /modules/lib/tests/path.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/path.test.js -------------------------------------------------------------------------------- /modules/lib/tests/plain-text-console.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/plain-text-console.test.js -------------------------------------------------------------------------------- /modules/lib/tests/preferences-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/preferences-service.test.js -------------------------------------------------------------------------------- /modules/lib/tests/registry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/registry.test.js -------------------------------------------------------------------------------- /modules/lib/tests/request.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/request.test.js -------------------------------------------------------------------------------- /modules/lib/tests/securable-module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/securable-module.test.js -------------------------------------------------------------------------------- /modules/lib/tests/self.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/self.test.js -------------------------------------------------------------------------------- /modules/lib/tests/simple-feature.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/simple-feature.test.js -------------------------------------------------------------------------------- /modules/lib/tests/tab-browser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/tab-browser.test.js -------------------------------------------------------------------------------- /modules/lib/tests/text-streams.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/text-streams.test.js -------------------------------------------------------------------------------- /modules/lib/tests/timer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/timer.test.js -------------------------------------------------------------------------------- /modules/lib/tests/traceback.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/traceback.test.js -------------------------------------------------------------------------------- /modules/lib/tests/traits-core.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/traits-core.test.js -------------------------------------------------------------------------------- /modules/lib/tests/traits.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/traits.test.js -------------------------------------------------------------------------------- /modules/lib/tests/unit-test.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/unit-test.test.js -------------------------------------------------------------------------------- /modules/lib/tests/unload-2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/unload-2.test.js -------------------------------------------------------------------------------- /modules/lib/tests/unload.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/unload.test.js -------------------------------------------------------------------------------- /modules/lib/tests/url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/url.test.js -------------------------------------------------------------------------------- /modules/lib/tests/version.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/version.test.js -------------------------------------------------------------------------------- /modules/lib/tests/window-loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/window-loader.test.js -------------------------------------------------------------------------------- /modules/lib/tests/window-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/window-utils.test.js -------------------------------------------------------------------------------- /modules/lib/tests/xhr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/xhr.test.js -------------------------------------------------------------------------------- /modules/lib/tests/xpcom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/xpcom.test.js -------------------------------------------------------------------------------- /modules/lib/tests/xul-app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tests/xul-app.test.js -------------------------------------------------------------------------------- /modules/lib/text-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/text-streams.js -------------------------------------------------------------------------------- /modules/lib/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/timer.js -------------------------------------------------------------------------------- /modules/lib/traceback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/traceback.js -------------------------------------------------------------------------------- /modules/lib/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/tray.js -------------------------------------------------------------------------------- /modules/lib/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/ui.js -------------------------------------------------------------------------------- /modules/lib/unload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/unload.js -------------------------------------------------------------------------------- /modules/lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/url.js -------------------------------------------------------------------------------- /modules/lib/utils/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/utils/data.js -------------------------------------------------------------------------------- /modules/lib/utils/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/utils/function.js -------------------------------------------------------------------------------- /modules/lib/utils/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/utils/registry.js -------------------------------------------------------------------------------- /modules/lib/utils/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/utils/thumbnail.js -------------------------------------------------------------------------------- /modules/lib/web-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/web-content.js -------------------------------------------------------------------------------- /modules/lib/window-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/window-utils.js -------------------------------------------------------------------------------- /modules/lib/windows/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/windows/dom.js -------------------------------------------------------------------------------- /modules/lib/windows/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/windows/loader.js -------------------------------------------------------------------------------- /modules/lib/windows/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/windows/tabs.js -------------------------------------------------------------------------------- /modules/lib/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/xhr.js -------------------------------------------------------------------------------- /modules/lib/xul-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/modules/lib/xul-app.js -------------------------------------------------------------------------------- /tests/alert/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/alert/index.html -------------------------------------------------------------------------------- /tests/canvas_thumbnails/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/canvas_thumbnails/index.html -------------------------------------------------------------------------------- /tests/canvas_thumbnails/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/canvas_thumbnails/jquery-min.js -------------------------------------------------------------------------------- /tests/child_process/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/child_process/index.html -------------------------------------------------------------------------------- /tests/close/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/close/index.html -------------------------------------------------------------------------------- /tests/close/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/close/test-app.js -------------------------------------------------------------------------------- /tests/console/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/console/index.html -------------------------------------------------------------------------------- /tests/console/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/console/test-app.js -------------------------------------------------------------------------------- /tests/cookies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/cookies/index.html -------------------------------------------------------------------------------- /tests/dialog_checks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/dialog_checks/index.html -------------------------------------------------------------------------------- /tests/dragdrop/dragdrop-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/dragdrop/dragdrop-in.js -------------------------------------------------------------------------------- /tests/dragdrop/dragdrop-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/dragdrop/dragdrop-out.js -------------------------------------------------------------------------------- /tests/dragdrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/dragdrop/index.html -------------------------------------------------------------------------------- /tests/favicon/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/favicon/appinfo.json -------------------------------------------------------------------------------- /tests/favicon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/favicon/index.html -------------------------------------------------------------------------------- /tests/favicon/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/favicon/jquery-min.js -------------------------------------------------------------------------------- /tests/file_list_dir/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/file_list_dir/index.html -------------------------------------------------------------------------------- /tests/file_picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/file_picker/index.html -------------------------------------------------------------------------------- /tests/file_watcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/file_watcher/index.html -------------------------------------------------------------------------------- /tests/file_write/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/file_write/index.html -------------------------------------------------------------------------------- /tests/fixupurl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/fixupurl/index.html -------------------------------------------------------------------------------- /tests/frame_buster/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/frame_buster/index.html -------------------------------------------------------------------------------- /tests/frame_buster/inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/frame_buster/inner-page.html -------------------------------------------------------------------------------- /tests/frame_buster/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/frame_buster/test-app.js -------------------------------------------------------------------------------- /tests/fullscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/fullscreen/index.html -------------------------------------------------------------------------------- /tests/fullscreen/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/fullscreen/test-app.js -------------------------------------------------------------------------------- /tests/iframe_custom_events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_custom_events/index.html -------------------------------------------------------------------------------- /tests/iframe_custom_events/inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_custom_events/inner-page.html -------------------------------------------------------------------------------- /tests/iframe_dig/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_dig/appinfo.json -------------------------------------------------------------------------------- /tests/iframe_dig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_dig/index.html -------------------------------------------------------------------------------- /tests/iframe_dig/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_dig/jquery-min.js -------------------------------------------------------------------------------- /tests/iframe_dig/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_dig/test-app.js -------------------------------------------------------------------------------- /tests/iframe_inheritance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_inheritance/index.html -------------------------------------------------------------------------------- /tests/iframe_inheritance/inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_inheritance/inner-page.html -------------------------------------------------------------------------------- /tests/iframe_injection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_injection/index.html -------------------------------------------------------------------------------- /tests/iframe_injection/inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_injection/inner-page.html -------------------------------------------------------------------------------- /tests/iframe_zoom/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_zoom/appinfo.json -------------------------------------------------------------------------------- /tests/iframe_zoom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/iframe_zoom/index.html -------------------------------------------------------------------------------- /tests/loader/appinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cuddlefish access" 3 | } 4 | -------------------------------------------------------------------------------- /tests/loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/loader/index.html -------------------------------------------------------------------------------- /tests/loader/lib/addr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/loader/lib/addr.js -------------------------------------------------------------------------------- /tests/loader/lib/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/loader/lib/memory.js -------------------------------------------------------------------------------- /tests/loader/lib/plain-text-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/loader/lib/plain-text-console.js -------------------------------------------------------------------------------- /tests/loader/lib/unload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/loader/lib/unload.js -------------------------------------------------------------------------------- /tests/many_iframes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/many_iframes/index.html -------------------------------------------------------------------------------- /tests/many_iframes/inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/many_iframes/inner-page.html -------------------------------------------------------------------------------- /tests/many_iframes/inner_page1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/many_iframes/inner_page1.html -------------------------------------------------------------------------------- /tests/menu/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu/appinfo.json -------------------------------------------------------------------------------- /tests/menu/icons/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu/icons/favorite.png -------------------------------------------------------------------------------- /tests/menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu/index.html -------------------------------------------------------------------------------- /tests/menu/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu/jquery-min.js -------------------------------------------------------------------------------- /tests/menu/perf_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu/perf_test.html -------------------------------------------------------------------------------- /tests/menu_not/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu_not/appinfo.json -------------------------------------------------------------------------------- /tests/menu_not/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/menu_not/index.html -------------------------------------------------------------------------------- /tests/mimeTypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/mimeTypes/index.html -------------------------------------------------------------------------------- /tests/modules/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/modules/appinfo.json -------------------------------------------------------------------------------- /tests/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/modules/index.html -------------------------------------------------------------------------------- /tests/modules/lib/addr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/modules/lib/addr.js -------------------------------------------------------------------------------- /tests/new_window/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/new_window/appinfo.json -------------------------------------------------------------------------------- /tests/new_window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/new_window/index.html -------------------------------------------------------------------------------- /tests/new_window/new_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/new_window/new_window.html -------------------------------------------------------------------------------- /tests/noscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/noscript/index.html -------------------------------------------------------------------------------- /tests/noscript/noscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/noscript/noscript.html -------------------------------------------------------------------------------- /tests/noscript/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/noscript/test-app.js -------------------------------------------------------------------------------- /tests/onload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/onload/index.html -------------------------------------------------------------------------------- /tests/onload/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/onload/test-app.js -------------------------------------------------------------------------------- /tests/progress_events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/progress_events/index.html -------------------------------------------------------------------------------- /tests/progress_events/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/progress_events/test-app.js -------------------------------------------------------------------------------- /tests/request/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/request/appinfo.json -------------------------------------------------------------------------------- /tests/request/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/request/index.html -------------------------------------------------------------------------------- /tests/request/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/request/jquery-min.js -------------------------------------------------------------------------------- /tests/requirejs/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/add.js -------------------------------------------------------------------------------- /tests/requirejs/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/appinfo.json -------------------------------------------------------------------------------- /tests/requirejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/index.html -------------------------------------------------------------------------------- /tests/requirejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/main.js -------------------------------------------------------------------------------- /tests/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/require.js -------------------------------------------------------------------------------- /tests/requirejs/require.js.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/require.js.orig -------------------------------------------------------------------------------- /tests/requirejs/require.js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/requirejs/require.js.patch -------------------------------------------------------------------------------- /tests/resizable/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/resizable/appinfo.json -------------------------------------------------------------------------------- /tests/resizable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/resizable/index.html -------------------------------------------------------------------------------- /tests/resize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/resize/index.html -------------------------------------------------------------------------------- /tests/simple_storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/simple_storage/index.html -------------------------------------------------------------------------------- /tests/target_top/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/target_top/index.html -------------------------------------------------------------------------------- /tests/target_top/inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/target_top/inner-page.html -------------------------------------------------------------------------------- /tests/window_title/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/window_title/index.html -------------------------------------------------------------------------------- /tests/window_title/inner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/chromeless/HEAD/tests/window_title/inner.html --------------------------------------------------------------------------------