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

Unified Diff: Source/core/editing/EditingStrategyTest.cpp

Issue 1304363008: [Editing][CodeHealth] remove default argument 'host' in EditingTestBase::setShadowContent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « no previous file | Source/core/editing/EditingTestBase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/EditingStrategyTest.cpp
diff --git a/Source/core/editing/EditingStrategyTest.cpp b/Source/core/editing/EditingStrategyTest.cpp
index 6f232735afccf99af5b7aaac4c261891e531ff3e..4ab4ae9f8feae54324829f231476729a39e5a113 100644
--- a/Source/core/editing/EditingStrategyTest.cpp
+++ b/Source/core/editing/EditingStrategyTest.cpp
@@ -18,7 +18,7 @@ TEST_F(EditingStrategyTest, caretMaxOffset)
const char* bodyContent = "<p id='host'>00<b id='one'>1</b><b id='two'>22</b>333</p>";
const char* shadowContent = "<content select=#two></content><content select=#one></content>";
setBodyContent(bodyContent);
- setShadowContent(shadowContent);
+ setShadowContent(shadowContent, "host");
Node* host = document().getElementById("host");
Node* one = document().getElementById("one");
Node* two = document().getElementById("two");
« no previous file with comments | « no previous file | Source/core/editing/EditingTestBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698