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

Unified Diff: Source/core/dom/StyleElement.h

Issue 203253006: Don't call ill-balanced removeStyleSheetCandidateNode() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/core/dom/StyleElement.h
diff --git a/Source/core/dom/StyleElement.h b/Source/core/dom/StyleElement.h
index b10337ec5f589ed379273fc5138122687486a547..21bbf8cef72728914f42488cd1719bf21338264e 100644
--- a/Source/core/dom/StyleElement.h
+++ b/Source/core/dom/StyleElement.h
@@ -60,8 +60,9 @@ private:
void process(Element*);
void clearSheet(Element* ownerElement = 0);
- bool m_createdByParser;
- bool m_loading;
+ bool m_createdByParser : 1;
+ bool m_loading : 1;
+ bool m_registeredAsCandidate : 1;
TextPosition m_startPosition;
};
« no previous file with comments | « LayoutTests/fast/dom/HTMLStyleElement/style-onload-remove-crash-expected.txt ('k') | Source/core/dom/StyleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698