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

Unified Diff: Source/WebKit/chromium/src/LinkHighlight.cpp

Issue 14582012: Clear highlight when the highlighted node gets removed from the document (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add releaseResources() Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: Source/WebKit/chromium/src/LinkHighlight.cpp
diff --git a/Source/WebKit/chromium/src/LinkHighlight.cpp b/Source/WebKit/chromium/src/LinkHighlight.cpp
index 8b1f7687309e922374b2c6229de2edad7550537d..18ffe80b8c26961dcb20f1d90cc43829c8ef7a98 100644
--- a/Source/WebKit/chromium/src/LinkHighlight.cpp
+++ b/Source/WebKit/chromium/src/LinkHighlight.cpp
@@ -335,6 +335,9 @@ void LinkHighlight::updateGeometry()
if (m_currentGraphicsLayer)
m_currentGraphicsLayer->addRepaintRect(FloatRect(layer()->position().x, layer()->position().y, layer()->bounds().width, layer()->bounds().height));
+ } else {
+ clearGraphicsLayerLinkHighlightPointer();
+ releaseResources();
}
}

Powered by Google App Engine
This is Rietveld 408576698