mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
Add tests/content/test_storage.html
This commit is contained in:
parent
f9817da0c4
commit
33d28aa969
1 changed files with 13 additions and 0 deletions
13
tests/content/test_storage.html
Normal file
13
tests/content/test_storage.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue