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

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

Issue 1308263002: Introduce EditingUtilitiesTest.cpp as a home of nextPositionOf() test (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « Source/core/core.gypi ('k') | Source/core/editing/PositionTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/EditingUtilitiesTest.cpp
diff --git a/Source/core/editing/EditingUtilitiesTest.cpp b/Source/core/editing/EditingUtilitiesTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..1e32f298af7a990cf4c8e20a31fea87b43835d40
--- /dev/null
+++ b/Source/core/editing/EditingUtilitiesTest.cpp
@@ -0,0 +1,28 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "core/editing/EditingUtilities.h"
+
+#include "core/editing/EditingTestBase.h"
+
+namespace blink {
+
+class EditingUtilitiesTest : public EditingTestBase {
+};
+
+TEST_F(EditingUtilitiesTest, NextNodeIndex)
+{
+ const char* bodyContent = "<p id='host'>00<b id='one'>11</b><b id='two'>22</b>33</p>";
+ const char* shadowContent = "<content select=#two></content><content select=#one></content>";
+ setBodyContent(bodyContent);
+ setShadowContent(shadowContent);
+ Node* host = document().getElementById("host");
+ Node* two = document().getElementById("two");
+
+ EXPECT_EQ(Position(host, 3), nextPositionOf(Position(two, 2), PositionMoveType::CodePoint));
+ EXPECT_EQ(PositionInComposedTree(host, 1), nextPositionOf(PositionInComposedTree(two, 2), PositionMoveType::CodePoint));
+}
+
+} // namespace blink
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/editing/PositionTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698