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

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

Issue 1187273003: Introduce createMarkup function takes two positions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-06-18T09:58:34 Created 5 years, 6 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/markup.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/StyledMarkupSerializerTest.cpp
diff --git a/Source/core/editing/StyledMarkupSerializerTest.cpp b/Source/core/editing/StyledMarkupSerializerTest.cpp
index 916593c8f9bde3506bf7b652dd532ce3d6a4e365..06f9e09d72d2357425e5cd246f2a41956ac29710 100644
--- a/Source/core/editing/StyledMarkupSerializerTest.cpp
+++ b/Source/core/editing/StyledMarkupSerializerTest.cpp
@@ -60,7 +60,7 @@ std::string StyledMarkupSerializerTest::serialize()
using PositionType = typename Tree::PositionType;
PositionType start = PositionType(m_document->body(), PositionType::PositionIsBeforeChildren);
PositionType end = PositionType(m_document->body(), PositionType::PositionIsAfterChildren);
- return CreateMarkupAlgorithm<Tree>::createMarkup(start, end).utf8().data();
+ return createMarkup(start, end).utf8().data();
}
static PassRefPtrWillBeRawPtr<ShadowRoot> createShadowRootForElementWithIDAndSetInnerHTML(TreeScope& scope, const char* hostElementID, const char* shadowRootContent)
« no previous file with comments | « no previous file | Source/core/editing/markup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698