Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 4 | --> |
michael@0 | 5 | <!DOCTYPE HTML> |
michael@0 | 6 | <html> |
michael@0 | 7 | <!-- |
michael@0 | 8 | https://bugzilla.mozilla.org/show_bug.cgi?id=786922 |
michael@0 | 9 | --> |
michael@0 | 10 | <head> |
michael@0 | 11 | <title>Test for basic sanity of the device storage API </title> |
michael@0 | 12 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 13 | <script type="text/javascript" src="devicestorage_common.js"></script> |
michael@0 | 14 | |
michael@0 | 15 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 16 | </head> |
michael@0 | 17 | <body> |
michael@0 | 18 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=786922">Mozilla Bug 786922</a> |
michael@0 | 19 | <p id="display"></p> |
michael@0 | 20 | <div id="content" style="display: none"> |
michael@0 | 21 | |
michael@0 | 22 | </div> |
michael@0 | 23 | <pre id="test"> |
michael@0 | 24 | <script class="testbody" type="text/javascript"> |
michael@0 | 25 | |
michael@0 | 26 | |
michael@0 | 27 | devicestorage_setup(); |
michael@0 | 28 | |
michael@0 | 29 | function add(storage, mime) { |
michael@0 | 30 | dump("adding: " + mime + "\n"); |
michael@0 | 31 | return navigator.getDeviceStorage(storage).add(createRandomBlob(mime)); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | var tests = [ |
michael@0 | 35 | function () { return add("pictures", "image/png")}, |
michael@0 | 36 | function () { return add("videos", "video/webm")}, |
michael@0 | 37 | function () { return add("music", "audio/wav")}, |
michael@0 | 38 | function () { return add("sdcard", "maple/cookies")}, |
michael@0 | 39 | ]; |
michael@0 | 40 | |
michael@0 | 41 | function fail(e) { |
michael@0 | 42 | ok(false, "onerror was called"); |
michael@0 | 43 | devicestorage_cleanup(); |
michael@0 | 44 | } |
michael@0 | 45 | |
michael@0 | 46 | function next(e) { |
michael@0 | 47 | |
michael@0 | 48 | if (e != undefined) |
michael@0 | 49 | ok(true, "addError was called"); |
michael@0 | 50 | |
michael@0 | 51 | var f = tests.pop(); |
michael@0 | 52 | |
michael@0 | 53 | if (f == undefined) { |
michael@0 | 54 | devicestorage_cleanup(); |
michael@0 | 55 | return; |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | request = f(); |
michael@0 | 59 | request.onsuccess = next; |
michael@0 | 60 | request.onerror = fail; |
michael@0 | 61 | } |
michael@0 | 62 | |
michael@0 | 63 | next(); |
michael@0 | 64 | |
michael@0 | 65 | </script> |
michael@0 | 66 | </pre> |
michael@0 | 67 | </body> |
michael@0 | 68 | </html> |
michael@0 | 69 |