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

Unified Diff: Source/core/svg/SVGUseElement.h

Issue 134263003: Followup fixes for bug 332066. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: setTimeout == race with load 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
Index: Source/core/svg/SVGUseElement.h
diff --git a/Source/core/svg/SVGUseElement.h b/Source/core/svg/SVGUseElement.h
index b83af14014f1ded326dfc7bf7d63a8311fb5f8e2..64ef9e714e27ff20abbf89609cc2aafc3de397c1 100644
--- a/Source/core/svg/SVGUseElement.h
+++ b/Source/core/svg/SVGUseElement.h
@@ -57,7 +57,8 @@ private:
SVGUseElement(Document&, bool wasInsertedByParser);
virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); }
- virtual bool isStructurallyExternal() const OVERRIDE { return isExternalURIReference(hrefCurrentValue(), document()); }
+ virtual bool isStructurallyExternal() const OVERRIDE { return !hrefCurrentValue().isNull() && isExternalURIReference(hrefCurrentValue(), document()); }
+
virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
@@ -78,7 +79,7 @@ private:
void buildShadowAndInstanceTree(SVGElement* target);
void detachInstance();
- virtual bool haveLoadedRequiredResources() OVERRIDE { return m_haveFiredLoadEvent; }
+ virtual bool haveLoadedRequiredResources() OVERRIDE { return !isStructurallyExternal() || m_haveFiredLoadEvent; }
virtual void finishParsingChildren() OVERRIDE;
virtual bool selfHasRelativeLengths() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698