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 | https://bugzilla.mozilla.org/show_bug.cgi?id=717103 |
michael@0 | 8 | --> |
michael@0 | 9 | <head> |
michael@0 | 10 | <title>Test for the device storage API </title> |
michael@0 | 11 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 12 | <script type="text/javascript" src="devicestorage_common.js"></script> |
michael@0 | 13 | |
michael@0 | 14 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 15 | </head> |
michael@0 | 16 | <body> |
michael@0 | 17 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=717103">Mozilla Bug 717103</a> |
michael@0 | 18 | <p id="display"></p> |
michael@0 | 19 | <div id="content" style="display: none"> |
michael@0 | 20 | |
michael@0 | 21 | </div> |
michael@0 | 22 | <pre id="test"> |
michael@0 | 23 | <script class="testbody" type="text/javascript"> |
michael@0 | 24 | |
michael@0 | 25 | devicestorage_setup(); |
michael@0 | 26 | |
michael@0 | 27 | function testingStorage() { |
michael@0 | 28 | return navigator.getDeviceStorage("pictures"); |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | var tests = [ |
michael@0 | 32 | function () { return testingStorage().addNamed(createRandomBlob('image/png'), gFileName); }, |
michael@0 | 33 | function () { return testingStorage().delete(gFileName); }, |
michael@0 | 34 | function () { return testingStorage().get(gFileName); }, |
michael@0 | 35 | function () { var r = testingStorage().enumerate("../"); return r; } |
michael@0 | 36 | ]; |
michael@0 | 37 | |
michael@0 | 38 | var gFileName = "../owned.png"; |
michael@0 | 39 | |
michael@0 | 40 | function fail(e) { |
michael@0 | 41 | ok(false, "addSuccess was called"); |
michael@0 | 42 | dump(request); |
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 | ok(e.target.error.name == "SecurityError", "Error must be SecurityError"); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | var f = tests.pop(); |
michael@0 | 54 | |
michael@0 | 55 | if (f == undefined) { |
michael@0 | 56 | devicestorage_cleanup(); |
michael@0 | 57 | return; |
michael@0 | 58 | } |
michael@0 | 59 | |
michael@0 | 60 | request = f(); |
michael@0 | 61 | request.onsuccess = fail; |
michael@0 | 62 | request.onerror = next; |
michael@0 | 63 | } |
michael@0 | 64 | |
michael@0 | 65 | next(); |
michael@0 | 66 | |
michael@0 | 67 | |
michael@0 | 68 | |
michael@0 | 69 | </script> |
michael@0 | 70 | </pre> |
michael@0 | 71 | </body> |
michael@0 | 72 | </html> |
michael@0 | 73 |