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 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | </head> |
michael@0 | 4 | <script type="text/javascript"> |
michael@0 | 5 | function doTest() |
michael@0 | 6 | { |
michael@0 | 7 | var query = location.search.substring(1); |
michael@0 | 8 | query = unescape(query); |
michael@0 | 9 | var keyNames = eval(query); |
michael@0 | 10 | |
michael@0 | 11 | parent.is(localStorage.a, "10", "a = 10"); |
michael@0 | 12 | parent.is(localStorage.b, "20", "b = 20"); |
michael@0 | 13 | parent.is(localStorage.c, "30", "c = 30"); |
michael@0 | 14 | parent.is(localStorage.d, "40", "d = 40"); |
michael@0 | 15 | parent.is(localStorage.e, "50", "e = 50"); |
michael@0 | 16 | parent.is(localStorage.length, 5, "length = 5"); |
michael@0 | 17 | |
michael@0 | 18 | for (var i = 0; i < localStorage.length; ++i) |
michael@0 | 19 | parent.is(keyNames[i], localStorage.key(i), "key "+keyNames[i]+" on same index"); |
michael@0 | 20 | |
michael@0 | 21 | parent.SimpleTest.finish(); |
michael@0 | 22 | localStorage.clear(); |
michael@0 | 23 | } |
michael@0 | 24 | </script> |
michael@0 | 25 | <body onload="doTest();"> |
michael@0 | 26 | </body> |
michael@0 | 27 | </html> |