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

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

Issue 69533003: Upgrade parser-created Custom Elements in creation order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Bring patch to head. Created 7 years, 1 month 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 | « Source/build/scripts/templates/ElementFactory.cpp.tmpl ('k') | 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 841f6749776cf5f96dd192558a5dd7a24b0cafe7..20699128cd1e15f865d21f6cfe46d9ab085d989d 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -354,7 +354,7 @@ public:
bool isInCanvasSubtree() const;
bool isUpgradedCustomElement() { return customElementState() == Upgraded; }
- bool isUnresolvedCustomElement() { return isCustomElement() && !isUpgradedCustomElement(); }
+ bool isUnresolvedCustomElement() { return customElementState() == WaitingForUpgrade; }
void setIsInsideRegion(bool);
bool isInsideRegion() const;
« no previous file with comments | « Source/build/scripts/templates/ElementFactory.cpp.tmpl ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698