https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2cfa0f419eab882fe7ef218107bd41cf780ec634 authored by jkereliuk on 04 April 2018, 13:05:19 UTC
some fixes and added test
Tip revision: 2cfa0f4
document-domain.html
<!doctype html>
<title>localStorage and document.domain</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<iframe></iframe>
<script>
  async_test(function(t) {
    frames[0].addEventListener("storage", function(e) {
      t.step(function() {
        localStorage.clear()
        t.done()
      })
    })
    frames[0].document.domain = document.domain
    localStorage.setItem("test", "test")
  })
</script>
back to top