diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-06-20 13:01:08 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-06-20 13:01:08 +0200 |
commit | 49233e234e5c787396cadb2cea33b31ae0cd65c1 (patch) | |
tree | 5410cb9a8fd53168bb60d62c54b654d86f03c38d /Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp | |
parent | b211c645d8ab690f713515dfdc84d80b11c27d2c (diff) | |
download | qtwebkit-49233e234e5c787396cadb2cea33b31ae0cd65c1.tar.gz |
Imported WebKit commit 3a8c29f35d00659d2ce7a0ccdfa8304f14e82327 (http://svn.webkit.org/repository/webkit/trunk@120813)
New snapshot with Windows build fixes
Diffstat (limited to 'Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp')
-rw-r--r-- | Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp b/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp index 8f5b8ef01..9934e5c79 100644 --- a/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp +++ b/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp @@ -620,10 +620,17 @@ TEST(IDBLevelDBCodingTest, ComparisonTest) keys.append(DatabaseNameKey::encode("a", "a")); keys.append(DatabaseMetaDataKey::encode(1, DatabaseMetaDataKey::kOriginName)); keys.append(ObjectStoreMetaDataKey::encode(1, 1, 0)); + keys.append(ObjectStoreMetaDataKey::encode(1, 1, 1)); + keys.append(ObjectStoreMetaDataKey::encodeMaxKey(1, 1)); + keys.append(ObjectStoreMetaDataKey::encodeMaxKey(1, 2)); keys.append(ObjectStoreMetaDataKey::encodeMaxKey(1)); keys.append(IndexMetaDataKey::encode(1, 1, 30, 0)); keys.append(IndexMetaDataKey::encode(1, 1, 31, 0)); keys.append(IndexMetaDataKey::encode(1, 1, 31, 1)); + keys.append(IndexMetaDataKey::encodeMaxKey(1, 1, 31)); + keys.append(IndexMetaDataKey::encodeMaxKey(1, 1, 32)); + keys.append(IndexMetaDataKey::encodeMaxKey(1, 1)); + keys.append(IndexMetaDataKey::encodeMaxKey(1, 2)); keys.append(ObjectStoreFreeListKey::encode(1, 1)); keys.append(ObjectStoreFreeListKey::encodeMaxKey(1)); keys.append(IndexFreeListKey::encode(1, 1, kMinimumIndexId)); |