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

Unified Diff: chrome/test/data/extensions/api_test/bookmark_manager/standard/test.js

Issue 446003002: Title: Same Bookmark url is getting pasted on the Bookmarkbar with same title. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | components/bookmarks/browser/bookmark_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/bookmark_manager/standard/test.js
diff --git a/chrome/test/data/extensions/api_test/bookmark_manager/standard/test.js b/chrome/test/data/extensions/api_test/bookmark_manager/standard/test.js
index eff134ff289d0ced524647bee9f17fd645d0c6fc..b8fd3bd95685566abacbf4a5b83cb5c97e173e1d 100644
--- a/chrome/test/data/extensions/api_test/bookmark_manager/standard/test.js
+++ b/chrome/test/data/extensions/api_test/bookmark_manager/standard/test.js
@@ -210,7 +210,7 @@ var tests = [
fooNode2 = result[result.length - 1];
- assertEq(fooNode.title, fooNode2.title);
+ assertEq(fooNode.title + " (1)", fooNode2.title);
assertEq(fooNode.url, fooNode2.url);
assertEq(fooNode.parentId, fooNode2.parentId);
}));
@@ -253,7 +253,7 @@ var tests = [
assertEq(fooNode.title, last.title);
assertEq(fooNode.url, last.url);
assertEq(fooNode.parentId, last.parentId);
- assertEq(last.title, last2.title);
+ assertEq(last.title + " (1)", last2.title);
assertEq(last.url, last2.url);
assertEq(last.parentId, last2.parentId);
« no previous file with comments | « no previous file | components/bookmarks/browser/bookmark_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698