Backed out changeset 2ccadd55dc4c, a=orange-fix

This commit is contained in:
Honza Bambas 2010-10-25 21:09:38 +02:00
Родитель c6bbecedd7
Коммит e4d1ff4c9c
18 изменённых файлов: 20 добавлений и 622 удалений

Просмотреть файл

@ -152,11 +152,6 @@ Sanitizer.prototype = {
// This cookie was created after our cutoff, clear it
cookieMgr.remove(cookie.host, cookie.name, cookie.path, false);
}
// Also handle all DOM storage data created after the cutoff.
var domStorageManager = Components.classes["@mozilla.org/dom/storagemanager;1"]
.getService(Ci.nsIDOMStorageManager);
domStorageManager.clearStorageDataSince(this.range[0]);
}
else {
// Remove everything

Просмотреть файл

@ -40,7 +40,7 @@
interface nsIDOMStorage;
interface nsIPrincipal;
[scriptable, uuid(9b729267-00ed-4e5c-a3d2-b5572ca0934d)]
[scriptable, uuid(fd91ec36-7da8-43bb-b8f2-4b57a862a467)]
interface nsIDOMStorageManager : nsISupports
{
/**
@ -59,15 +59,6 @@ interface nsIDOMStorageManager : nsISupports
*/
void clearOfflineApps();
/**
* Clears any data stored in DOM storage since the provided time
* @param since
* Any storage value that has been inserted after the time specified
* with 'since' will be deleted. The time is in microseconds, defined
* as PR_Now() function result.
*/
void clearStorageDataSince(in PRInt64 since);
/**
* Returns instance of localStorage object for aURI's origin.
* This method ensures there is always only a single instance

Просмотреть файл

@ -65,7 +65,6 @@
#include "nsDOMString.h"
#include "nsNetCID.h"
#include "nsIProxyObjectManager.h"
#include "nsISupportsPrimitives.h"
static const PRUint32 ASK_BEFORE_ACCEPT = 1;
static const PRUint32 ACCEPT_SESSION = 2;
@ -439,33 +438,6 @@ nsDOMStorageManager::GetUsage(const nsAString& aDomain,
PR_FALSE, aUsage);
}
NS_IMETHODIMP
nsDOMStorageManager::ClearStorageDataSince(PRInt64 aSince)
{
nsresult rv;
rv = nsDOMStorage::InitDB();
NS_ENSURE_SUCCESS(rv, rv);
rv = nsDOMStorage::gStorageDB->RemoveTimeRange(aSince);
NS_ENSURE_SUCCESS(rv, rv);
nsCOMPtr<nsIObserverService> obsserv = mozilla::services::GetObserverService();
if (obsserv) {
nsCOMPtr<nsISupportsPRTime> time = do_CreateInstance(
"@mozilla.org/supports-PRTime;1", &rv);
NS_ENSURE_SUCCESS(rv, rv);
rv = time->SetData(aSince);
NS_ENSURE_SUCCESS(rv, rv);
rv = obsserv->NotifyObservers(time, NS_DOMSTORAGE_CUTOFF_OBSERVER, nsnull);
NS_ENSURE_SUCCESS(rv, rv);
}
return NS_OK;
}
NS_IMETHODIMP
nsDOMStorageManager::ClearOfflineApps()
{
@ -688,8 +660,6 @@ nsDOMStorage::InitAsSessionStorage(nsIPrincipal *aPrincipal, const nsSubstring &
mQuotaDomainDBKey.Truncate();
#endif
RegisterObservers(false);
mStorageType = SessionStorage;
return NS_OK;
}
@ -733,7 +703,7 @@ nsDOMStorage::InitAsLocalStorage(nsIPrincipal *aPrincipal, const nsSubstring &aD
mCanUseChromePersist = URICanUseChromePersist(URI);
}
RegisterObservers(true);
RegisterObservers();
return NS_OK;
}
@ -761,7 +731,7 @@ nsDOMStorage::InitAsGlobalStorage(const nsACString &aDomainDemanded)
mStorageType = GlobalStorage;
mEventBroadcaster = this;
RegisterObservers(true);
RegisterObservers();
return NS_OK;
}
@ -1121,12 +1091,6 @@ nsDOMStorage::SetItem(const nsAString& aKey, const nsAString& aData)
entry->mItem = newitem;
}
if (!UseDB()) {
// This is used only for sessionStorage, no need to setup the time also when
// loading items from the database etc.
entry->mItem->SetInsertTimeToNow();
}
if ((oldValue != aData || mStorageType == GlobalStorage) && mEventBroadcaster)
mEventBroadcaster->BroadcastChangeNotification(aKey, oldValue, aData);
@ -1568,16 +1532,13 @@ nsDOMStorage::MaybeCommitTemporaryTable(bool force)
}
nsresult
nsDOMStorage::RegisterObservers(bool persistent)
nsDOMStorage::RegisterObservers()
{
nsCOMPtr<nsIObserverService> obsserv = mozilla::services::GetObserverService();
if (obsserv) {
if (persistent) {
obsserv->AddObserver(this, "profile-before-change", PR_TRUE);
obsserv->AddObserver(this, NS_XPCOM_SHUTDOWN_OBSERVER_ID, PR_TRUE);
obsserv->AddObserver(this, NS_DOMSTORAGE_FLUSH_TIMER_OBSERVER, PR_TRUE);
}
obsserv->AddObserver(this, NS_DOMSTORAGE_CUTOFF_OBSERVER, PR_TRUE);
obsserv->AddObserver(this, "profile-before-change", PR_TRUE);
obsserv->AddObserver(this, NS_XPCOM_SHUTDOWN_OBSERVER_ID, PR_TRUE);
obsserv->AddObserver(this, NS_DOMSTORAGE_FLUSH_TIMER_OBSERVER, PR_TRUE);
}
return NS_OK;
}
@ -1600,17 +1561,6 @@ nsDOMStorage::SetTemporaryTableLoaded(bool loaded)
mLoadedTemporaryTable = loaded;
}
static PLDHashOperator
StorageCutOffEnum(nsSessionStorageEntry* aEntry, void* userArg)
{
PRInt64 since = *(PRInt64*)userArg;
if (aEntry->mItem->ShouldBeCutOff(since))
return PL_DHASH_REMOVE;
return PL_DHASH_NEXT;
}
NS_IMETHODIMP
nsDOMStorage::Observe(nsISupports *subject,
const char *topic,
@ -1629,30 +1579,6 @@ nsDOMStorage::Observe(nsISupports *subject,
return NS_OK;
}
if (!strcmp(topic, NS_DOMSTORAGE_CUTOFF_OBSERVER)) {
if (UseDB()) {
// If this storage is using the database (localStorage, globalStorage)
// then just re-cache the items from the database, database is now up to
// date.
mItemsCached = PR_FALSE;
CacheKeysFromDB();
}
else {
// This is sessionStorage. In that case we need to prune the mItems hash
// table. Insert times are properly set in nsDOMStorage::SetItem.
nsresult rv;
nsCOMPtr<nsISupportsPRTime> time = do_QueryInterface(subject, &rv);
NS_ENSURE_SUCCESS(rv, rv);
PRInt64 since;
rv = time->GetData(&since);
NS_ENSURE_SUCCESS(rv, rv);
mItems.EnumerateEntries(StorageCutOffEnum, &since);
}
return NS_OK;
}
NS_WARNING("Unrecognized topic in nsDOMStorage::Observe");
return NS_OK;
}
@ -2105,7 +2031,6 @@ nsDOMStorageItem::nsDOMStorageItem(nsDOMStorage* aStorage,
: mSecure(aSecure),
mKey(aKey),
mValue(aValue),
mInsertTime(0),
mStorage(aStorage)
{
}

Просмотреть файл

@ -64,7 +64,6 @@
#include "mozilla/TimeStamp.h"
#define NS_DOMSTORAGE_FLUSH_TIMER_OBSERVER "domstorage-flush-timer"
#define NS_DOMSTORAGE_CUTOFF_OBSERVER "domstorage-cutoff"
#ifdef MOZ_STORAGE
#include "nsDOMStorageDBWrapper.h"
@ -243,7 +242,7 @@ public:
return static_cast<nsDOMStorage*>(static_cast<nsIDOMStorageObsolete*>(aSupports));
}
nsresult RegisterObservers(bool persistent);
nsresult RegisterObservers();
nsresult MaybeCommitTemporaryTable(bool force);
bool WasTemporaryTableLoaded();
@ -465,16 +464,6 @@ public:
mValue.Truncate();
}
void SetInsertTimeToNow()
{
mInsertTime = PR_Now();
}
bool ShouldBeCutOff(PRInt64 since)
{
return mInsertTime > since;
}
protected:
// true if this value is for secure sites only
@ -486,9 +475,6 @@ protected:
// value of the item
nsString mValue;
// insertion/update time
PRInt64 mInsertTime;
// If this item came from the db, mStorage points to the storage
// object where this item came from.
nsRefPtr<nsDOMStorage> mStorage;

Просмотреть файл

@ -263,25 +263,6 @@ nsDOMStorageDBWrapper::RemoveOwner(const nsACString& aOwner,
return rv;
}
nsresult
nsDOMStorageDBWrapper::RemoveTimeRange(PRInt64 aSince)
{
nsresult rv;
rv = mPrivateBrowsingDB.RemoveTimeRange(aSince);
NS_ENSURE_SUCCESS(rv, rv);
if (nsDOMStorageManager::gStorageManager->InPrivateBrowsingMode())
return NS_OK;
rv = mSessionOnlyDB.RemoveTimeRange(aSince);
NS_ENSURE_SUCCESS(rv, rv);
rv = mPersistentDB.RemoveTimeRange(aSince);
NS_ENSURE_SUCCESS(rv, rv);
return rv;
}
nsresult
nsDOMStorageDBWrapper::RemoveOwners(const nsTArray<nsString> &aOwners,

Просмотреть файл

@ -177,13 +177,6 @@ public:
RemoveOwners(const nsTArray<nsString>& aOwners,
PRBool aIncludeSubDomains, PRBool aMatch);
/**
* Removes all keys that were created after the time specified by 'aSince'.
* 'aSince' value is compatible with PR_Now() function.
*/
nsresult
RemoveTimeRange(PRInt64 aSince);
/**
* Removes all keys from storage. Used when clearing storage.
*/

Просмотреть файл

@ -230,7 +230,6 @@ nsDOMStorageMemoryDB::SetKey(nsDOMStorage* aStorage,
item->mValue = aValue;
item->mSecure = aSecure;
item->mInsertTime = PR_Now();
*aNewUsage = usage;
@ -380,34 +379,6 @@ nsDOMStorageMemoryDB::RemoveOwners(const nsTArray<nsString> &aOwners,
return NS_OK;
}
static PLDHashOperator
RemoveTimeRangeEnum(const nsAString& keyname,
nsAutoPtr<nsDOMStorageMemoryDB::nsInMemoryItem>& item,
void *closure)
{
if (item->mInsertTime > *(PRInt64*)closure)
return PL_DHASH_REMOVE;
return PL_DHASH_NEXT;
}
static PLDHashOperator
RemoveTimeRangeStoragesEnum(const nsACString& key,
nsAutoPtr<nsDOMStorageMemoryDB::nsInMemoryStorage>& storage,
void *closure)
{
storage->mTable.Enumerate(RemoveTimeRangeEnum, closure);
return PL_DHASH_NEXT;
}
nsresult
nsDOMStorageMemoryDB::RemoveTimeRange(PRInt64 since)
{
mData.Enumerate(RemoveTimeRangeStoragesEnum, &since);
return NS_OK;
}
nsresult
nsDOMStorageMemoryDB::RemoveAll()
{

Просмотреть файл

@ -56,7 +56,6 @@ public:
public:
PRBool mSecure;
nsString mValue;
PRInt64 mInsertTime;
};
typedef nsClassHashtable<nsStringHashKey, nsInMemoryItem> nsStorageItemsTable;
@ -160,14 +159,6 @@ public:
RemoveOwners(const nsTArray<nsString>& aOwners,
PRBool aIncludeSubDomains, PRBool aMatch);
/**
* Remove all values from all scopes not marked as offline that has been
* created after the time specified with 'aSince'. Used by the Clear Private
* Data dialog. 'aSince' value is compatible with PR_Now() function.
*/
nsresult
RemoveTimeRange(PRInt64 aSince);
/**
* Removes all keys from storage. Used when clearing storage.
*/

Просмотреть файл

@ -205,63 +205,30 @@ nsDOMStoragePersistentDB::Init(const nsString& aDatabaseName)
"PRAGMA temp_store = MEMORY"));
NS_ENSURE_SUCCESS(rv, rv);
PRInt32 schemaVersion;
rv = mConnection->GetSchemaVersion(&schemaVersion);
NS_ENSURE_SUCCESS(rv, rv);
mozStorageTransaction transaction(mConnection, PR_FALSE);
// Ensure Gecko 1.9.1 storage table
PRBool exists;
rv = mConnection->TableExists(NS_LITERAL_CSTRING("webappsstore2"),
&exists);
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE TABLE IF NOT EXISTS webappsstore2 ("
"scope TEXT, "
"key TEXT, "
"value TEXT, "
"secure INTEGER, "
"owner TEXT)"));
NS_ENSURE_SUCCESS(rv, rv);
if (!exists) {
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE TABLE webappsstore2 ("
"scope TEXT, "
"key TEXT, "
"value TEXT, "
"secure INTEGER, "
"owner TEXT, "
"inserttime BIGINT DEFAULT 0)"));
NS_ENSURE_SUCCESS(rv, rv);
}
else {
if (schemaVersion == 0) {
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"ALTER TABLE webappsstore2 "
"ADD COLUMN inserttime BIGINT DEFAULT 0"));
NS_ENSURE_SUCCESS(rv, rv);
}
}
if (schemaVersion == 0) {
rv = mConnection->SetSchemaVersion(1);
NS_ENSURE_SUCCESS(rv, rv);
}
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE UNIQUE INDEX IF NOT EXISTS scope_key_index"
" ON webappsstore2(scope, key)"));
NS_ENSURE_SUCCESS(rv, rv);
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE INDEX IF NOT EXISTS inserttime_index"
" ON webappsstore2(inserttime)"));
NS_ENSURE_SUCCESS(rv, rv);
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE TEMPORARY TABLE webappsstore2_temp ("
"scope TEXT, "
"key TEXT, "
"value TEXT, "
"secure INTEGER, "
"owner TEXT, "
"inserttime BIGINT DEFAULT 0)"));
"owner TEXT)"));
NS_ENSURE_SUCCESS(rv, rv);
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
@ -269,11 +236,6 @@ nsDOMStoragePersistentDB::Init(const nsString& aDatabaseName)
" ON webappsstore2_temp(scope, key)"));
NS_ENSURE_SUCCESS(rv, rv);
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE INDEX IF NOT EXISTS inserttime_index_temp"
" ON webappsstore2_temp(inserttime)"));
NS_ENSURE_SUCCESS(rv, rv);
rv = mConnection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE TEMPORARY VIEW webappsstore2_view AS "
@ -309,6 +271,8 @@ nsDOMStoragePersistentDB::Init(const nsString& aDatabaseName)
rv = mConnection->CreateFunction(NS_LITERAL_CSTRING("ISOFFLINE"), 1, function2);
NS_ENSURE_SUCCESS(rv, rv);
PRBool exists;
// Check if there is storage of Gecko 1.9.0 and if so, upgrade that storage
// to actual webappsstore2 table and drop the obsolete table. First process
// this newer table upgrade to priority potential duplicates from older
@ -391,8 +355,8 @@ nsDOMStoragePersistentDB::Init(const nsString& aDatabaseName)
// insert a new key
rv = mConnection->CreateStatement(NS_LITERAL_CSTRING(
"INSERT OR REPLACE INTO "
"webappsstore2_temp(scope, key, value, secure, inserttime) "
"VALUES (:scope, :key, :value, :secure, :inserttime)"),
"webappsstore2_temp(scope, key, value, secure) "
"VALUES (:scope, :key, :value, :secure)"),
getter_AddRefs(mInsertKeyStatement));
NS_ENSURE_SUCCESS(rv, rv);
@ -427,14 +391,6 @@ nsDOMStoragePersistentDB::Init(const nsString& aDatabaseName)
getter_AddRefs(mRemoveStorageStatement));
NS_ENSURE_SUCCESS(rv, rv);
// remove keys that are junger then a specific time
rv = mConnection->CreateStatement(NS_LITERAL_CSTRING(
"DELETE FROM webappsstore2_view "
"WHERE inserttime > :time "
"AND NOT ISOFFLINE(scope)"),
getter_AddRefs(mRemoveTimeRangeStatement));
NS_ENSURE_SUCCESS(rv, rv);
// remove all keys
rv = mConnection->CreateStatement(NS_LITERAL_CSTRING(
"DELETE FROM webappsstore2_view"),
@ -733,9 +689,6 @@ nsDOMStoragePersistentDB::SetKey(nsDOMStorage* aStorage,
rv = binder->BindInt32ByName(NS_LITERAL_CSTRING("secure"),
aSecure ? 1 : 0);
NS_ENSURE_SUCCESS(rv, rv);
rv = binder->BindInt64ByName(NS_LITERAL_CSTRING("inserttime"),
PR_Now());
NS_ENSURE_SUCCESS(rv, rv);
rv = binder.Add();
NS_ENSURE_SUCCESS(rv, rv);
@ -852,32 +805,6 @@ nsDOMStoragePersistentDB::ClearStorage(nsDOMStorage* aStorage)
return NS_OK;
}
nsresult
nsDOMStoragePersistentDB::RemoveTimeRange(PRInt64 since)
{
nsresult rv;
rv = MaybeCommitInsertTransaction();
NS_ENSURE_SUCCESS(rv, rv);
mozStorageStatementScoper scope(mRemoveTimeRangeStatement);
Binder binder(mRemoveTimeRangeStatement, &rv);
NS_ENSURE_SUCCESS(rv, rv);
rv = binder->BindInt64ByName(NS_LITERAL_CSTRING("time"),
since);
NS_ENSURE_SUCCESS(rv, rv);
rv = binder.Add();
NS_ENSURE_SUCCESS(rv, rv);
rv = mRemoveTimeRangeStatement->Execute();
NS_ENSURE_SUCCESS(rv, rv);
return NS_OK;
}
nsresult
nsDOMStoragePersistentDB::RemoveOwner(const nsACString& aOwner,
PRBool aIncludeSubDomains)

Просмотреть файл

@ -128,14 +128,6 @@ public:
RemoveOwners(const nsTArray<nsString>& aOwners,
PRBool aIncludeSubDomains, PRBool aMatch);
/**
* Remove all values from all scopes not marked as offline that has been
* created after the time specified with 'aSince'. Used by the Clear Private
* Data dialog. 'aSince' value is compatible with PR_Now() function.
*/
nsresult
RemoveTimeRange(PRInt64 aSince);
/**
* Removes all keys from storage. Used when clearing storage.
*/
@ -184,7 +176,6 @@ protected:
nsCOMPtr<mozIStorageStatement> mRemoveKeyStatement;
nsCOMPtr<mozIStorageStatement> mRemoveOwnerStatement;
nsCOMPtr<mozIStorageStatement> mRemoveStorageStatement;
nsCOMPtr<mozIStorageStatement> mRemoveTimeRangeStatement;
nsCOMPtr<mozIStorageStatement> mRemoveAllStatement;
nsCOMPtr<mozIStorageStatement> mGetOfflineExcludedUsageStatement;
nsCOMPtr<mozIStorageStatement> mGetFullUsageStatement;

Просмотреть файл

@ -54,7 +54,6 @@ DIRS += \
whatwg \
geolocation \
localstorage \
globalstorage \
sessionstorage \
storageevent \
$(NULL)

Просмотреть файл

@ -1,54 +0,0 @@
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is
# Mozilla Corporation.
# Portions created by the Initial Developer are Copyright (C) 2008
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Jan Bambas <honzab@firemni.cz>
#
# Alternatively, the contents of this file may be used under the terms of
# either of the GNU General Public License Version 2 or later (the "GPL"),
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
DEPTH = ../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
relativesrcdir = dom/tests/mochitest/globalstorage
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
_TEST_FILES = \
test_globalStorageDeleteSinceAPI.html \
$(NULL)
libs:: $(_TEST_FILES)
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)

Просмотреть файл

@ -1,73 +0,0 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>globalStorage delete since API test</title>
<script type="text/javascript" src="/MochiKit/packed.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript">
function cleanup()
{
globalStorage[window.location.hostname].removeItem("key1");
globalStorage[window.location.hostname].removeItem("key2");
globalStorage[window.location.hostname].removeItem("key3");
globalStorage[window.location.hostname].removeItem("key4");
SimpleTest.finish();
}
function doTest()
{
var since = 0;
setTimeout('globalStorage[window.location.hostname].key1 = "value1"', 0);
setTimeout('globalStorage[window.location.hostname].key2 = "value2"', 100);
setTimeout('globalStorage[window.location.hostname].key3 = "value3"', 200);
// Since now, all added/changed items will be deleted
setTimeout(function() {
// Now in microseconds...
since = (new Date()).getTime() * 1000;
}, 300);
// Rather give the timer chance to move forward, on some systems the
// granularity may be too grainy.
setTimeout('globalStorage[window.location.hostname].key4 = "value4"', 500);
setTimeout('globalStorage[window.location.hostname].key1 = "value1-2"', 600);
setTimeout(function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
is(globalStorage[window.location.hostname].length, 4, "Expected 4 items before delete");
try {
var domStorageManager = Components.classes["@mozilla.org/dom/storagemanager;1"]
.getService(Components.interfaces.nsIDOMStorageManager);
domStorageManager.clearStorageDataSince(since);
}
catch(ex) {
ok(false, ex);
}
todo(globalStorage[window.location.hostname].key1 == null, "key1 deleted (Bug 600366)");
is(globalStorage[window.location.hostname].key2, "value2", "key2 left");
is(globalStorage[window.location.hostname].key3, "value3", "key3 left");
todo(globalStorage[window.location.hostname].key4 == null, "key4 deleted (Bug 600366)");
is(globalStorage[window.location.hostname].length, 2, "Expected 2 items after delete");
cleanup();
}, 700);
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="doTest();">
</body>
</html>

Просмотреть файл

@ -68,8 +68,6 @@ _TEST_FILES = \
test_localStorageBase.html \
test_localStorageBasePrivateBrowsing.html \
test_localStorageBaseSessionOnly.html \
test_localStorageDeleteSinceAPI.html \
test_localStorageDeleteSinceAPIPrivateBrowsing.html \
test_localStorageCookieSettings.html \
test_localStorageEnablePref.html \
test_localStorageOriginsEquals.html \

Просмотреть файл

@ -1,70 +0,0 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>localStorage delete since API test</title>
<script type="text/javascript" src="/MochiKit/packed.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript">
function cleanup()
{
localStorage.clear();
SimpleTest.finish();
}
function doTest()
{
var since = 0;
setTimeout('localStorage.key1 = "value1"', 0);
setTimeout('localStorage.key2 = "value2"', 100);
setTimeout('localStorage.key3 = "value3"', 200);
// Since now, all added/changed items will be deleted
setTimeout(function() {
// Now in microseconds...
since = (new Date()).getTime() * 1000;
}, 300);
// Rather give the timer chance to move forward, on some systems the
// granularity may be too grainy.
setTimeout('localStorage.key4 = "value4"', 500);
setTimeout('localStorage.key1 = "value1-2"', 600);
setTimeout(function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
is(localStorage.length, 4, "Expected 4 items before delete in localStorage");
try {
var domStorageManager = Components.classes["@mozilla.org/dom/storagemanager;1"]
.getService(Components.interfaces.nsIDOMStorageManager);
domStorageManager.clearStorageDataSince(since);
}
catch(ex) {
ok(false, ex);
}
is(localStorage.key1, null, "key1 deleted (if this fails see bug 600366 first)");
is(localStorage.key2, "value2", "key2 left");
is(localStorage.key3, "value3", "key3 left");
is(localStorage.key4, null, "key4 deleted (if this fails see bug 600366 first)");
is(localStorage.length, 2, "Expected 2 items after delete in localStorage");
cleanup();
}, 700);
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="doTest();">
</body>
</html>

Просмотреть файл

@ -1,85 +0,0 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>localStorage delete since API test in Private Browsing</title>
<script type="text/javascript" src="/MochiKit/packed.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="pbSwitch.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript">
function cleanup()
{
localStorage.clear();
leavePrivateBrowsing();
SimpleTest.finish();
}
function startTest()
{
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
if (get_PBSvc())
doTest();
else
ok(true, "No private browsing service, test could not be performed");
}
function doTest()
{
var since = 0;
enterPrivateBrowsing();
setTimeout('localStorage.key1 = "value1"', 0);
setTimeout('localStorage.key2 = "value2"', 100);
setTimeout('localStorage.key3 = "value3"', 200);
// Since now, all added/changed items will be deleted
setTimeout(function() {
// Now in microseconds...
since = (new Date()).getTime() * 1000;
}, 300);
// Rather give the timer chance to move forward, on some systems the
// granularity may be too grainy.
setTimeout('localStorage.key4 = "value4"', 500);
setTimeout('localStorage.key1 = "value1-2"', 600);
setTimeout(function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
is(localStorage.length, 4, "Expected 4 items before delete in localStorage");
try {
var domStorageManager = Components.classes["@mozilla.org/dom/storagemanager;1"]
.getService(Components.interfaces.nsIDOMStorageManager);
domStorageManager.clearStorageDataSince(since);
}
catch(ex) {
ok(false, ex);
}
is(localStorage.key1, null, "key1 deleted (if this fails see bug 600366 first)");
is(localStorage.key2, "value2", "key2 left");
is(localStorage.key3, "value3", "key3 left");
is(localStorage.key4, null, "key4 deleted (if this fails see bug 600366 first)");
is(localStorage.length, 2, "Expected 2 items after delete in localStorage");
cleanup();
}, 700);
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="startTest();">
</body>
</html>

Просмотреть файл

@ -53,7 +53,6 @@ _TEST_FILES = \
file_https.html \
test_sessionStorageBase.html \
test_sessionStorageClone.html \
test_sessionStorageDeleteSinceAPI.html \
test_sessionStorageReplace.html \
test_sessionStorageHttpHttps.html \
interOriginSlave.js \

Просмотреть файл

@ -1,67 +0,0 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>sessionStorage delete since API test</title>
<script type="text/javascript" src="/MochiKit/packed.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript">
function cleanup()
{
sessionStorage.clear();
SimpleTest.finish();
}
function doTest()
{
var since = 0;
setTimeout('sessionStorage.key1 = "value1"', 0);
setTimeout('sessionStorage.key2 = "value2"', 100);
setTimeout('sessionStorage.key3 = "value3"', 200);
// Since now, all added/changed items will be deleted
setTimeout(function() {
// Now in microseconds...
since = (new Date()).getTime() * 1000;
}, 300);
setTimeout('sessionStorage.key4 = "value4"', 500);
setTimeout('sessionStorage.key1 = "value1-2"', 600);
setTimeout(function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
is(sessionStorage.length, 4, "Expected 4 items before delete in sessionStorage");
try {
var domStorageManager = Components.classes["@mozilla.org/dom/storagemanager;1"]
.getService(Components.interfaces.nsIDOMStorageManager);
domStorageManager.clearStorageDataSince(since);
}
catch(ex) {
ok(false, ex);
}
is(sessionStorage.length, 2, "Expected 2 items after delete in sessionStorage");
is(sessionStorage.key1, null, "key1 deleted");
is(sessionStorage.key2, "value2", "key2 left");
is(sessionStorage.key3, "value3", "key3 left");
is(sessionStorage.key4, null, "key4 deleted");
cleanup();
}, 700);
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="doTest();">
</body>
</html>