diff options
author | Steve Block <steveblock@google.com> | 2010-02-25 10:58:37 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-02-25 11:17:52 +0000 |
commit | cfb0617749a64f2e177386b030d46007b8c4b179 (patch) | |
tree | 033b0b4e1b1eaa96831b52fc1ec6675132f33035 /LayoutTests/storage/domstorage/sessionstorage/enumerate-storage.html | |
parent | 4175d59b46f96005f0c64978b1a94e3fe60f1e8e (diff) | |
download | external_webkit-cfb0617749a64f2e177386b030d46007b8c4b179.zip external_webkit-cfb0617749a64f2e177386b030d46007b8c4b179.tar.gz external_webkit-cfb0617749a64f2e177386b030d46007b8c4b179.tar.bz2 |
Adds layout tests for HTML5 features
The following layout tests should all pass on Android, as they are for recently
implemented HTML5 features ...
- fast/dom/Geolocation
- storage
- http/tests/appcache
This change adds these tests to the Android tree, at the current WebKit revision
r54731. This is so that we can easily keep track of which tests should always be
green, and so that we can add Android-specific test results.
We also add the following paths ...
- fast/js/resources - used by the Geolocation tests
- http/conf - used by the Appcache tests
Tests that are currently failing are added to the DumpRenderTree skipped list
temporarily, to keep all tests green.
Change-Id: Id96c05e3746ed64e4e4c40c99567b8def688f90a
Diffstat (limited to 'LayoutTests/storage/domstorage/sessionstorage/enumerate-storage.html')
-rw-r--r-- | LayoutTests/storage/domstorage/sessionstorage/enumerate-storage.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/LayoutTests/storage/domstorage/sessionstorage/enumerate-storage.html b/LayoutTests/storage/domstorage/sessionstorage/enumerate-storage.html new file mode 100644 index 0000000..7321f9a --- /dev/null +++ b/LayoutTests/storage/domstorage/sessionstorage/enumerate-storage.html @@ -0,0 +1,47 @@ +<html> +<head> +<script src="resources/clearSessionStorage.js"></script> +<script> + +if (window.layoutTestController) + layoutTestController.dumpAsText(); + +function log(a) +{ + document.getElementById("logger").innerHTML += a + "<br>"; +} + +function startTest() +{ + if (!window.sessionStorage) { + log("window.sessionStorage DOES NOT exist"); + return; + } + + Storage.prototype.prototypeTestKey = "prototypeTestValue"; + sessionStorage.foo = "bar"; + sessionStorage.fu = "baz"; + sessionStorage.batman = "bin suparman"; + sessionStorage.bar = "foo"; + sessionStorage.alpha = "beta"; + sessionStorage.zeta = "gamma"; + + // Enumerate sessionStorage, appending each key onto an array + var enumeratedArray = new Array(); + for (var n in sessionStorage) + enumeratedArray.push(n); + + // Sort the array, since the storage order isn't guaranteed + enumeratedArray.sort(); + + for (var n in enumeratedArray) + log(enumeratedArray[n]); +} + +</script> +</head> +<body onload="startTest();"> +This test checks to see that you can enumber a Storage object and get only the keys as a result. The built-in properties of the Storage object should be ignored. The test operates on the SessionStorage object.<br> +<div id="logger"></div> +</body> +</html> |