diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-31 00:06:20 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-31 00:06:20 +0000 |
commit | 07e8c4607a2cbd24a617757428611b4ff84ae5d3 (patch) | |
tree | f29a7975fa2e8e77446b49b9fde5efd256bab5fc /content/test/data | |
parent | 7053d67adb108a03c46f9fc4664ee6210ba9d3cb (diff) | |
download | chromium_src-07e8c4607a2cbd24a617757428611b4ff84ae5d3.zip chromium_src-07e8c4607a2cbd24a617757428611b4ff84ae5d3.tar.gz chromium_src-07e8c4607a2cbd24a617757428611b4ff84ae5d3.tar.bz2 |
Convert DOM Storage's UI test to a browser_test. browser_tests are sharded and run quicker, and are generally less flaky than ui tests. They'll also be portable to content_browsertest once we have it.
BUG=90448
Review URL: https://chromiumcodereview.appspot.com/9969033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130003 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/data')
-rw-r--r-- | content/test/data/layout_tests/clear_dom_storage.html | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/content/test/data/layout_tests/clear_dom_storage.html b/content/test/data/layout_tests/clear_dom_storage.html deleted file mode 100644 index da41289..0000000 --- a/content/test/data/layout_tests/clear_dom_storage.html +++ /dev/null @@ -1,7 +0,0 @@ -<script> -if (window.localStorage) - localStorage.clear(); -if (window.sessionStorage) - sessionStorage.clear(); -document.cookie = "cleared=true"; -</script> |