OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "web/TextFinder.h" | 5 #include "web/TextFinder.h" |
6 | 6 |
7 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 7 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
9 #include "core/dom/NodeList.h" | 9 #include "core/dom/NodeList.h" |
10 #include "core/dom/Range.h" | 10 #include "core/dom/Range.h" |
11 #include "core/dom/shadow/ShadowRoot.h" | 11 #include "core/dom/shadow/ShadowRoot.h" |
12 #include "core/frame/FrameHost.h" | 12 #include "core/frame/FrameHost.h" |
13 #include "core/frame/VisualViewport.h" | 13 #include "core/frame/VisualViewport.h" |
14 #include "core/html/HTMLElement.h" | 14 #include "core/html/HTMLElement.h" |
15 #include "core/layout/TextAutosizer.h" | 15 #include "core/layout/TextAutosizer.h" |
16 #include "core/page/Page.h" | 16 #include "core/page/Page.h" |
17 #include "platform/testing/TestingPlatformSupport.h" | 17 #include "platform/testing/TestingPlatformSupport.h" |
18 #include "platform/testing/UnitTestHelpers.h" | 18 #include "platform/testing/UnitTestHelpers.h" |
19 #include "public/platform/Platform.h" | 19 #include "public/platform/Platform.h" |
20 #include "public/web/WebDocument.h" | 20 #include "public/web/WebDocument.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 #include "web/FindInPageCoordinates.h" | 22 #include "web/FindInPageCoordinates.h" |
23 #include "web/WebLocalFrameImpl.h" | 23 #include "web/WebLocalFrameImpl.h" |
24 #include "web/tests/FrameTestHelpers.h" | 24 #include "web/tests/FrameTestHelpers.h" |
25 #include "wtf/OwnPtr.h" | |
26 | 25 |
27 using blink::testing::runPendingTasks; | 26 using blink::testing::runPendingTasks; |
28 | 27 |
29 namespace blink { | 28 namespace blink { |
30 | 29 |
31 class TextFinderTest : public ::testing::Test { | 30 class TextFinderTest : public ::testing::Test { |
32 protected: | 31 protected: |
33 TextFinderTest() | 32 TextFinderTest() |
34 { | 33 { |
35 m_webViewHelper.initialize(); | 34 m_webViewHelper.initialize(); |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 // There will be only one iteration before timeout, because increment | 494 // There will be only one iteration before timeout, because increment |
496 // of the TimeProxyPlatform timer is greater than timeout threshold. | 495 // of the TimeProxyPlatform timer is greater than timeout threshold. |
497 textFinder().scopeStringMatches(identifier, searchPattern, findOptions, true
); | 496 textFinder().scopeStringMatches(identifier, searchPattern, findOptions, true
); |
498 while (textFinder().scopingInProgress()) | 497 while (textFinder().scopingInProgress()) |
499 runPendingTasks(); | 498 runPendingTasks(); |
500 | 499 |
501 EXPECT_EQ(4, textFinder().totalMatchCount()); | 500 EXPECT_EQ(4, textFinder().totalMatchCount()); |
502 } | 501 } |
503 | 502 |
504 } // namespace blink | 503 } // namespace blink |
OLD | NEW |