summaryrefslogtreecommitdiffstats
path: root/devtools/client/storage/test/storage-search.html
blob: 1a84ff622dac105692bb9021e9dada47024f7855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
<!--
Bug 1224115 - Storage Inspector table filtering
-->
<head>
  <meta charset="utf-8">
  <title>Storage inspector table filtering test</title>
</head>
<body>
<script type="text/javascript;version=1.8">
"use strict";

localStorage.setItem("01234", "56789");
localStorage.setItem("ANIMAL", "hOrSe");
localStorage.setItem("FOO", "bArBaz");
localStorage.setItem("food", "energy bar");
localStorage.setItem("money", "##$$$**");
localStorage.setItem("sport", "football");
localStorage.setItem("year", "2016");
</script>
</body>
</html>