summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webstorage/storage_functions_not_overwritten.window.js
blob: 693743de9016df023a1224c4f2166aadb1045d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
["localStorage", "sessionStorage"].forEach(function(name) {
    test(function() {
        var storage = window[name];
        storage.clear();

        runTest();
        function doWedgeThySelf() {
            storage.setItem("clear", "almost");
            storage.setItem("key", "too");
            storage.setItem("getItem", "funny");
            storage.setItem("removeItem", "to");
            storage.setItem("length", "be");
            storage.setItem("setItem", "true");
        }

        function runTest() {
            doWedgeThySelf();

            assert_equals(storage.getItem('clear'), "almost");
            assert_equals(storage.getItem('key'), "too");
            assert_equals(storage.getItem('getItem'), "funny");
            assert_equals(storage.getItem('removeItem'), "to");
            assert_equals(storage.getItem('length'), "be");
            assert_equals(storage.getItem('setItem'), "true");

            // Test to see if an exception is thrown for any of the built in
            // functions.
            storage.setItem("test", "123");
            storage.key(0);
            storage.getItem("test");
            storage.removeItem("test");
            storage.clear();
            assert_equals(storage.length, 0);
        }

    }, name + " should be not rendered unusable by setting a key with the same name as a storage function such that the function is hidden");
});