summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webstorage/resources/local_set_item_iframe.html
blob: 0693824e5db00e7c5dd06778ce037b4f2d38f4e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML>
<html>
 <body>
    <script>
        if (('localStorage' in window) && window.localStorage !== null){
            try {
                localStorage.setItem("name", "user1");
            } catch (e) {
                parent.fail("setItem method is failed.");
            }
        } else {
            parent.fail("localStorage is not supported.");
        }
    </script>
 </body>
</html>