Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: Source/core/dom/DocumentMarkerControllerTest.cpp

Issue 499493003: Temporarily let DocumentMakerController use invalidatePaintForWholeRenderer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698