OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "core/editing/EditingUtilities.h" | 6 #include "core/editing/EditingUtilities.h" |
7 | 7 |
8 #include "core/editing/EditingTestBase.h" | 8 #include "core/editing/EditingTestBase.h" |
9 | 9 |
10 namespace blink { | 10 namespace blink { |
11 | 11 |
12 class EditingUtilitiesTest : public EditingTestBase { | 12 class EditingUtilitiesTest : public EditingTestBase { |
13 }; | 13 }; |
14 | 14 |
15 TEST_F(EditingUtilitiesTest, firstEditablePositionAfterPositionInRoot) | |
16 { | |
17 const char* bodyContent = "<p id='host' contenteditable><b id='one'></b><b i d='two'>22</b></p>"; | |
18 const char* shadowContent = "<content select=#two></content><content select= #one></content><b id='three'>333</b>"; | |
19 setBodyContent(bodyContent); | |
20 RefPtrWillBeRawPtr<ShadowRoot> shadowRoot = setShadowContent(shadowContent); | |
21 updateLayoutAndStyleForPainting(); | |
22 Node* host = document().getElementById("host"); | |
23 Node* one = document().getElementById("one"); | |
24 Node* three = shadowRoot->getElementById("three"); | |
25 | |
26 EXPECT_EQ(Position(one, 0), firstEditablePositionAfterPositionInRoot(Positio n(one, 0), host)); | |
yoichio
2015/08/26 08:58:26
Looks getting same position though function name i
| |
27 | |
28 EXPECT_EQ(PositionInComposedTree(one, 0), firstEditablePositionAfterPosition InRoot(PositionInComposedTree(one, 0), host)); | |
29 | |
30 EXPECT_EQ(Position::firstPositionInNode(host), firstEditablePositionAfterPos itionInRoot(Position(three, 0), host)); | |
31 EXPECT_EQ(PositionInComposedTree::afterNode(host), firstEditablePositionAfte rPositionInRoot(PositionInComposedTree(three, 0), host)); | |
32 } | |
33 | |
15 TEST_F(EditingUtilitiesTest, enclosingNodeOfType) | 34 TEST_F(EditingUtilitiesTest, enclosingNodeOfType) |
16 { | 35 { |
17 const char* bodyContent = "<p id='host'><b id='one'>11</b></p>"; | 36 const char* bodyContent = "<p id='host'><b id='one'>11</b></p>"; |
18 const char* shadowContent = "<content select=#two></content><div id='three'> <content select=#one></div></content>"; | 37 const char* shadowContent = "<content select=#two></content><div id='three'> <content select=#one></div></content>"; |
19 setBodyContent(bodyContent); | 38 setBodyContent(bodyContent); |
20 RefPtrWillBeRawPtr<ShadowRoot> shadowRoot = setShadowContent(shadowContent); | 39 RefPtrWillBeRawPtr<ShadowRoot> shadowRoot = setShadowContent(shadowContent); |
21 updateLayoutAndStyleForPainting(); | 40 updateLayoutAndStyleForPainting(); |
22 Node* host = document().getElementById("host"); | 41 Node* host = document().getElementById("host"); |
23 Node* one = document().getElementById("one"); | 42 Node* one = document().getElementById("one"); |
24 Node* three = shadowRoot->getElementById("three"); | 43 Node* three = shadowRoot->getElementById("three"); |
(...skipping 24 matching lines...) Expand all Loading... | |
49 updateLayoutAndStyleForPainting(); | 68 updateLayoutAndStyleForPainting(); |
50 Node* one = document().getElementById("one"); | 69 Node* one = document().getElementById("one"); |
51 Node* two = document().getElementById("two"); | 70 Node* two = document().getElementById("two"); |
52 Node* three = document().getElementById("three"); | 71 Node* three = document().getElementById("three"); |
53 | 72 |
54 EXPECT_EQ(Position(two->firstChild(), 1), nextVisuallyDistinctCandidate(Posi tion(one, 1))); | 73 EXPECT_EQ(Position(two->firstChild(), 1), nextVisuallyDistinctCandidate(Posi tion(one, 1))); |
55 EXPECT_EQ(PositionInComposedTree(three->firstChild(), 1), nextVisuallyDistin ctCandidate(PositionInComposedTree(one, 1))); | 74 EXPECT_EQ(PositionInComposedTree(three->firstChild(), 1), nextVisuallyDistin ctCandidate(PositionInComposedTree(one, 1))); |
56 } | 75 } |
57 | 76 |
58 } // namespace blink | 77 } // namespace blink |
OLD | NEW |