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

Unified Diff: LayoutTests/storage/indexeddb/resources/keypath-intrinsic-properties.js

Issue 821303006: bindings: Fixes layouttests when moving attributes to prototype chains. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: s/tab/space/g Created 5 years, 11 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/storage/indexeddb/resources/keypath-intrinsic-properties.js
diff --git a/LayoutTests/storage/indexeddb/resources/keypath-intrinsic-properties.js b/LayoutTests/storage/indexeddb/resources/keypath-intrinsic-properties.js
index 68dfa4be41bdbecd02b585c1086436ca13216ed3..47a7b4de761b854b6bb02e3a32ff310a481e3998 100644
--- a/LayoutTests/storage/indexeddb/resources/keypath-intrinsic-properties.js
+++ b/LayoutTests/storage/indexeddb/resources/keypath-intrinsic-properties.js
@@ -30,7 +30,8 @@ function testKeyPaths()
id: 'id#' + i,
string: Array(i * 2 + 1).join('x'),
array: Array(i * 3 + 1).join('x').split(/(?:)/),
- blob: new Blob([Array(i * 4 + 1).join('x')], {type: "type " + i})
+ blob: JSON.parse(stringifyDOMObject(
jsbell 2015/01/20 17:06:43 Doesn't this change the test? Instead of datum.blo
Yuki 2015/01/21 07:43:24 Ah, good catch! I should have been more careful.
+ new Blob([Array(i * 4 + 1).join('x')], {type: "type " + i})))
};
debug("store.put(" + JSON.stringify(datum) + ")");
store.put(datum);

Powered by Google App Engine
This is Rietveld 408576698