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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore_createIndex13.htm

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 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/external/wpt/IndexedDB/idbobjectstore_createIndex13.htm
diff --git a/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore_createIndex13.htm b/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore_createIndex13.htm
index fb70cc72b8d634153f24b3b94c4260106128b6c8..ac32df6629087da9dcf651a8c4d3e3b1b40e7a82 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore_createIndex13.htm
+++ b/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore_createIndex13.htm
@@ -19,7 +19,7 @@
open_rq.onsuccess = function (event) {
var txn = db.transaction("store", "readwrite");
- ostore = txn.objectStore("store");
+ var ostore = txn.objectStore("store");
t.step(function(){
assert_throws("InvalidStateError", function(){
ostore.createIndex("index", "indexedProperty");

Powered by Google App Engine
This is Rietveld 408576698