| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014, Google Inc. All rights reserved. | 2 * Copyright (c) 2014, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
| 32 | 32 |
| 33 #include <memory> |
| 34 #include "bindings/core/v8/V8BindingForTesting.h" |
| 33 #include "core/dom/NodeWithIndex.h" | 35 #include "core/dom/NodeWithIndex.h" |
| 34 #include "core/dom/SynchronousMutationObserver.h" | 36 #include "core/dom/SynchronousMutationObserver.h" |
| 35 #include "core/dom/Text.h" | 37 #include "core/dom/Text.h" |
| 36 #include "core/frame/FrameView.h" | 38 #include "core/frame/FrameView.h" |
| 37 #include "core/html/HTMLHeadElement.h" | 39 #include "core/html/HTMLHeadElement.h" |
| 38 #include "core/html/HTMLLinkElement.h" | 40 #include "core/html/HTMLLinkElement.h" |
| 39 #include "core/testing/DummyPageHolder.h" | 41 #include "core/testing/DummyPageHolder.h" |
| 40 #include "platform/heap/Handle.h" | 42 #include "platform/heap/Handle.h" |
| 41 #include "platform/weborigin/ReferrerPolicy.h" | 43 #include "platform/weborigin/ReferrerPolicy.h" |
| 42 #include "platform/weborigin/SchemeRegistry.h" | 44 #include "platform/weborigin/SchemeRegistry.h" |
| 43 #include "platform/weborigin/SecurityOrigin.h" | 45 #include "platform/weborigin/SecurityOrigin.h" |
| 44 #include "testing/gmock/include/gmock/gmock.h" | 46 #include "testing/gmock/include/gmock/gmock.h" |
| 45 #include "testing/gtest/include/gtest/gtest.h" | 47 #include "testing/gtest/include/gtest/gtest.h" |
| 46 #include <memory> | |
| 47 | 48 |
| 48 namespace blink { | 49 namespace blink { |
| 49 | 50 |
| 50 class DocumentTest : public ::testing::Test { | 51 class DocumentTest : public ::testing::Test { |
| 51 protected: | 52 protected: |
| 52 void SetUp() override; | 53 void SetUp() override; |
| 53 | 54 |
| 54 void TearDown() override { ThreadState::current()->collectAllGarbage(); } | 55 void TearDown() override { ThreadState::current()->collectAllGarbage(); } |
| 55 | 56 |
| 56 Document& document() const { return m_dummyPageHolder->document(); } | 57 Document& document() const { return m_dummyPageHolder->document(); } |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 document().body()); | 569 document().body()); |
| 569 ASSERT_EQ(2u, observer.childrenChangedNodes().size()); | 570 ASSERT_EQ(2u, observer.childrenChangedNodes().size()); |
| 570 EXPECT_EQ(document().documentElement(), observer.childrenChangedNodes()[0]); | 571 EXPECT_EQ(document().documentElement(), observer.childrenChangedNodes()[0]); |
| 571 EXPECT_EQ(document().documentElement(), observer.childrenChangedNodes()[1]); | 572 EXPECT_EQ(document().documentElement(), observer.childrenChangedNodes()[1]); |
| 572 | 573 |
| 573 ASSERT_EQ(1u, observer.removedNodes().size()); | 574 ASSERT_EQ(1u, observer.removedNodes().size()); |
| 574 EXPECT_EQ(replacedNode, observer.removedNodes()[0]); | 575 EXPECT_EQ(replacedNode, observer.removedNodes()[0]); |
| 575 } | 576 } |
| 576 | 577 |
| 577 TEST_F(DocumentTest, SynchronousMutationNotifierSplitTextNode) { | 578 TEST_F(DocumentTest, SynchronousMutationNotifierSplitTextNode) { |
| 579 V8TestingScope scope; |
| 578 auto& observer = *new TestSynchronousMutationObserver(document()); | 580 auto& observer = *new TestSynchronousMutationObserver(document()); |
| 579 | 581 |
| 580 Text* splitSample = document().createTextNode("0123456789"); | 582 Text* splitSample = document().createTextNode("0123456789"); |
| 581 document().body()->appendChild(splitSample); | 583 document().body()->appendChild(splitSample); |
| 582 | 584 |
| 583 splitSample->splitText(4, ASSERT_NO_EXCEPTION); | 585 splitSample->splitText(4, ASSERT_NO_EXCEPTION); |
| 584 ASSERT_EQ(1u, observer.splitTextNodes().size()); | 586 ASSERT_EQ(1u, observer.splitTextNodes().size()); |
| 585 EXPECT_EQ(splitSample, observer.splitTextNodes()[0]); | 587 EXPECT_EQ(splitSample, observer.splitTextNodes()[0]); |
| 586 } | 588 } |
| 587 | 589 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 { | 646 { |
| 645 setHtmlInnerHTML( | 647 setHtmlInnerHTML( |
| 646 "<body>" | 648 "<body>" |
| 647 "<meta name=\"theme-color\" content=\"#00ff00\">"); | 649 "<meta name=\"theme-color\" content=\"#00ff00\">"); |
| 648 EXPECT_EQ(Color(0, 255, 0), document().themeColor()) | 650 EXPECT_EQ(Color(0, 255, 0), document().themeColor()) |
| 649 << "Theme color should be bright green."; | 651 << "Theme color should be bright green."; |
| 650 } | 652 } |
| 651 } | 653 } |
| 652 | 654 |
| 653 } // namespace blink | 655 } // namespace blink |
| OLD | NEW |