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

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

Issue 135273010: Enable HTMLImageElement to avoid immediate src loading when parsed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index ff899822534bda2e6f24c4e82643280cf7dd64f6..2167280b3bec1931e4d2a55c6d875587acc8be52 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -536,6 +536,7 @@ public:
protected:
Element(const QualifiedName& tagName, Document* document, ConstructionType type)
: ContainerNode(document, type)
+ , m_parserSet(false)
, m_tagName(tagName)
{
ScriptWrappable::init(this);
@@ -577,6 +578,7 @@ protected:
PassRefPtr<RenderStyle> originalStyleForRenderer();
Node* insertAdjacent(const String& where, Node* newChild, ExceptionState&);
+ bool m_parserSet;
private:
void styleAttributeChanged(const AtomicString& newStyleString, AttributeModificationReason);
« no previous file with comments | « no previous file | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698