https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c050814c692c5e59194d4bf5b5d20f1bbf92397f authored by Simon Pieters on 19 December 2016, 13:33:32 UTC
Test that the snapshotting happens at document creation time
Tip revision: c050814
local_set_item_iframe.html
<!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>
back to top