https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 20d1447c7c5e95723d5c102b3645461fd0477e55 authored by Marcos Cáceres on 22 March 2018, 02:51:25 UTC
Remove PaymentCurrencyAmount.currencySystem tests
Tip revision: 20d1447
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