Chromium Code Reviews| Index: content/test/data/dom_storage/verify_data.html |
| diff --git a/content/test/data/dom_storage/verify_data.html b/content/test/data/dom_storage/verify_data.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cc845bb86a6a8af5ad0e499b629c1cadea47f88e |
| --- /dev/null |
| +++ b/content/test/data/dom_storage/verify_data.html |
| @@ -0,0 +1,14 @@ |
| +<!DOCTYPE html> |
| +<meta charset=utf-8> |
| +<script src="common.js"></script> |
| +<script> |
| +function test() { |
| + let val = window.localStorage['foo']; |
| + if (val !== 'bar') |
| + fail('Read incorrect value from localStorage. Excpected "bar", got "' + val + '"'); |
| + else |
| + done(); |
| +} |
| +</script> |
| +<body onload="setTimeout(test, 0)"> |
| +<div id="status">Starting...<br/></div> |