blob: 914138aa39f418fac6f538ae74cf14b072d90273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE HTML>
<html>
<!--
Bug 1224115 - Storage Inspector table filtering
-->
<head>
<meta charset="utf-8">
<title>Storage inspector table filtering test</title>
<script type="text/javascript">
"use strict";
/* exported setup */
function setup() {
document.cookie = "01234=56789";
document.cookie = "ANIMAL=hOrSe";
document.cookie = "food=energy bar";
document.cookie = "FOO=bArBaz";
document.cookie = "money=##$$$**";
document.cookie = "sport=football";
document.cookie = "year=2016";
}
</script>
</head>
<body>
</body>
</html>
|