Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |