summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_339445_sample.html
blob: 32656a8d9d8acec70a7a43b4b5e43d43ace7e7ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<meta charset="utf-8">
<title>Test for bug 339445</title>

storageTestItem = <span id="storageTestItem">FAIL</span>

<!--
  storageTestItem's textContent will be one of the following:
  * FAIL    : sessionStorage wasn't available
  * PENDING : the test value has been initialized on first load
  * SUCCESS : the test value was correctly retrieved
-->

<script type="application/javascript">
  document.getElementById("storageTestItem").textContent =
    sessionStorage["storageTestItem"] || "PENDING";
  sessionStorage["storageTestItem"] = "SUCCESS";
</script>