Chromium Code Reviews| Index: content/test/data/dom_storage/store_data.html |
| diff --git a/content/test/data/dom_storage/store_data.html b/content/test/data/dom_storage/store_data.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..91b084444788f1456969e77f8f8607985681e468 |
| --- /dev/null |
| +++ b/content/test/data/dom_storage/store_data.html |
| @@ -0,0 +1,12 @@ |
| +<!DOCTYPE html> |
| +<meta charset=utf-8> |
| +<script src="common.js"></script> |
| +<script> |
| +function test() { |
| + window.localStorage.clear(); |
| + window.localStorage.setItem("foo", "bar"); |
| + done(); |
| +} |
| +</script> |
| +<body onload="setTimeout(test, 0)"> |
| +<div id="status">Starting...<br/></div> |