| 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();
|
|
|