OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, 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 17 matching lines...) Expand all Loading... |
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 "config.h" | 31 #include "config.h" |
32 #include "core/dom/DocumentMarkerController.h" | 32 #include "core/dom/DocumentMarkerController.h" |
33 | 33 |
34 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 34 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
35 #include "core/dom/Document.h" | 35 #include "core/dom/Document.h" |
36 #include "core/dom/Range.h" | 36 #include "core/dom/Range.h" |
37 #include "core/dom/Text.h" | 37 #include "core/dom/Text.h" |
| 38 #include "core/frame/FrameView.h" |
38 #include "core/html/HTMLElement.h" | 39 #include "core/html/HTMLElement.h" |
39 #include "core/testing/DummyPageHolder.h" | 40 #include "core/testing/DummyPageHolder.h" |
40 #include "wtf/PassRefPtr.h" | 41 #include "wtf/PassRefPtr.h" |
41 #include "wtf/RefPtr.h" | 42 #include "wtf/RefPtr.h" |
42 #include "wtf/testing/WTFTestHelpers.h" | 43 #include "wtf/testing/WTFTestHelpers.h" |
43 #include <gtest/gtest.h> | 44 #include <gtest/gtest.h> |
44 | 45 |
45 using namespace blink; | 46 using namespace blink; |
46 | 47 |
47 namespace { | 48 namespace { |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstC
hild()->firstChild()); | 194 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstC
hild()->firstChild()); |
194 markNodeContents(parent); | 195 markNodeContents(parent); |
195 EXPECT_EQ(1u, markerController().markers().size()); | 196 EXPECT_EQ(1u, markerController().markers().size()); |
196 setBodyInnerHTML(""); | 197 setBodyInnerHTML(""); |
197 } | 198 } |
198 // No more reference to marked node. | 199 // No more reference to marked node. |
199 Heap::collectAllGarbage(); | 200 Heap::collectAllGarbage(); |
200 EXPECT_EQ(0u, markerController().markers().size()); | 201 EXPECT_EQ(0u, markerController().markers().size()); |
201 } | 202 } |
202 | 203 |
| 204 TEST_F(DocumentMarkerControllerTest, RendererInvalidation) |
| 205 { |
| 206 setBodyInnerHTML("foo"); |
| 207 document().view()->updateLayoutAndStyleForPainting(); |
| 208 document().view()->setTracksPaintInvalidations(true); |
| 209 markNodeContents(document().body()->firstChild()); |
| 210 document().view()->updateLayoutAndStyleForPainting(); |
| 211 EXPECT_FALSE(document().view()->trackedPaintInvalidationRectsAsText().isEmpt
y()); |
| 212 document().view()->setTracksPaintInvalidations(false); |
203 } | 213 } |
| 214 |
| 215 } |
OLD | NEW |