Add tests/content/test_storage.html

This commit is contained in:
Jag Talon 2015-04-11 17:12:38 -04:00
parent f9817da0c4
commit 33d28aa969

View file

@ -0,0 +1,13 @@
<html>
<head>
<title></title>
</head>
<body>
<script>
// Delete keys that don't exist in either localStorage
// or sessionStorage.
delete localStorage.a;
delete sessionStorage.a;
</script>
</body>
</html>