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

Unified Diff: third_party/WebKit/Source/core/dom/StyleEngine.cpp

Issue 2312953002: Store a single inspector stylesheet hidden from CSSOM. (Closed)
Patch Set: Incorrect removal. Created 4 years, 3 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: third_party/WebKit/Source/core/dom/StyleEngine.cpp
diff --git a/third_party/WebKit/Source/core/dom/StyleEngine.cpp b/third_party/WebKit/Source/core/dom/StyleEngine.cpp
index 4d3e270470b7334fad4470da48edfb75d11edad7..db587b430b914da1dccc41d3b4bb4ab662bf1d91 100644
--- a/third_party/WebKit/Source/core/dom/StyleEngine.cpp
+++ b/third_party/WebKit/Source/core/dom/StyleEngine.cpp
@@ -133,6 +133,18 @@ void StyleEngine::injectAuthorSheet(StyleSheetContents* authorSheet)
resolverChanged(AnalyzedStyleUpdate);
}
+CSSStyleSheet& StyleEngine::ensureInspectorStyleSheet()
+{
+ if (m_inspectorStyleSheet)
+ return *m_inspectorStyleSheet;
+
+ StyleSheetContents* contents = StyleSheetContents::create(CSSParserContext(*m_document, nullptr));
+ m_inspectorStyleSheet = CSSStyleSheet::create(contents, m_document);
+ markDocumentDirty();
+ resolverChanged(AnalyzedStyleUpdate);
+ return *m_inspectorStyleSheet;
+}
+
void StyleEngine::addPendingSheet(StyleEngineContext &context)
{
m_pendingScriptBlockingStylesheets++;
@@ -815,6 +827,7 @@ DEFINE_TRACE(StyleEngine)
{
visitor->trace(m_document);
visitor->trace(m_injectedAuthorStyleSheets);
+ visitor->trace(m_inspectorStyleSheet);
visitor->trace(m_documentStyleSheetCollection);
visitor->trace(m_styleSheetCollectionMap);
visitor->trace(m_resolver);

Powered by Google App Engine
This is Rietveld 408576698