https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 00fcdc8ddaa1c1d9bf75d26be79e84f669314ee5 authored by Domenic Denicola on 20 October 2016, 18:20:23 UTC
Fix broadcastchannel test
Tip revision: 00fcdc8
local_change_item_iframe.html
<!DOCTYPE HTML>
<html>
  <body>
    <script>
        if (('localStorage' in window) && window.localStorage !== null){
            try {
                localStorage.setItem("name", "user1");
                localStorage.setItem("name", "user2");
            } catch (e) {
                parent.fail("setItem method is failed.");
            }
            localStorage.clear();
        } else {
            parent.fail("localStorage is not supported.");
        }
    </script>
  </body>
</html>
back to top