Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-structure.html

Issue 1706413002: Indexed DB: Rename "int version" to "version" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-structure.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-structure.html b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-structure.html
index af650afac11f70efd4e97a89083b8db23f4b9e22..200887bffdde565fb1a4b843c0f0ca42e0b3fc1c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-structure.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-structure.html
@@ -19,7 +19,7 @@ function test()
if (!database)
return;
InspectorTest.addResult(database.databaseId.name);
- InspectorTest.addResult(" intVersion: " + database.intVersion);
+ InspectorTest.addResult(" version: " + database.version);
InspectorTest.addResult(" objectStores:");
var objectStoreNames = [];
for (var objectStoreName in database.objectStores)

Powered by Google App Engine
This is Rietveld 408576698