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

Unified Diff: LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-key.htm

Issue 1295773004: update-w3c-deps import using blink c936ac9d274f959a4b5908db6835bcd612fb1a9e: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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: LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-key.htm
diff --git a/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-key.htm b/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-key.htm
index 2ae063cdde59392c9dcde41e5a2802d2cb245dbd..ecb282758214d8a4ec8dcc43348c17108628a021 100644
--- a/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-key.htm
+++ b/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-key.htm
@@ -29,18 +29,18 @@
var cursor = e.target.result;
assert_equals(cursor.value, "data", "prequisite cursor.value");
- assert_object_equals(cursor.key, key, 'key');
+ assert_key_equals(cursor.key, key, 'key');
assert_readonly(cursor, 'key');
if (key instanceof Array) {
cursor.key.push("new");
key.push("new");
- assert_object_equals(cursor.key, key, 'key after array push');
+ assert_key_equals(cursor.key, key, 'key after array push');
// But we can not change key (like readonly, just a bit different)
cursor.key = 10;
- assert_object_equals(cursor.key, key, 'key after assignment');
+ assert_key_equals(cursor.key, key, 'key after assignment');
}
t.done();

Powered by Google App Engine
This is Rietveld 408576698