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

Side by Side Diff: third_party/WebKit/Source/core/editing/commands/SetCharacterDataCommandTest.cpp

Issue 2706033007: Add SetCharacterDataCommand (Closed)
Patch Set: Fix DCHECK Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "core/editing/commands/SetCharacterDataCommand.h"
6
7 #include "core/editing/EditingTestBase.h"
8 #include "core/editing/commands/EditingState.h"
9
10 namespace blink {
11
12 class SetCharacterDataCommandTest : public EditingTestBase {};
13
14 TEST_F(SetCharacterDataCommandTest, applyAndUnapply) {
15 setBodyContent("<div contenteditable>This is a good test case</div>");
16
17 SimpleEditCommand* command = SetCharacterDataCommand::create(
18 toText(document().body()->firstChild()->firstChild()), 10, 4, "lousy");
19
20 command->doReapply();
21 EXPECT_EQ("This is a lousy test case",
22 toText(document().body()->firstChild()->firstChild())->wholeText());
23
24 command->doUnapply();
25 EXPECT_EQ("This is a good test case",
26 toText(document().body()->firstChild()->firstChild())->wholeText());
27 }
yosin_UTC9 2017/02/22 06:44:32 Could you add edge cases? - node.length=0 offset=c
28
29 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698