OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/css/CSSURIValue.h" | 5 #include "core/css/CSSURIValue.h" |
6 | 6 |
7 #include "core/css/CSSMarkup.h" | 7 #include "core/css/CSSMarkup.h" |
8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
9 #include "core/svg/SVGElementProxy.h" | 9 #include "core/fetch/FetchInitiatorTypeNames.h" |
10 #include "core/svg/SVGURIReference.h" | 10 #include "core/fetch/FetchRequest.h" |
| 11 #include "core/fetch/ResourceFetcher.h" |
| 12 #include "wtf/text/WTFString.h" |
11 | 13 |
12 namespace blink { | 14 namespace blink { |
13 | 15 |
14 CSSURIValue::CSSURIValue(const String& urlString) | 16 CSSURIValue::CSSURIValue(const String& urlString) |
15 : CSSValue(URIClass), m_url(urlString) {} | 17 : CSSValue(URIClass), m_url(urlString), m_loadRequested(false) {} |
16 | 18 |
17 CSSURIValue::~CSSURIValue() {} | 19 CSSURIValue::~CSSURIValue() {} |
18 | 20 |
19 SVGElementProxy& CSSURIValue::ensureElementProxy(Document& document) const { | 21 DocumentResource* CSSURIValue::load(Document& document) const { |
20 if (m_proxy) | 22 if (!m_loadRequested) { |
21 return *m_proxy; | 23 m_loadRequested = true; |
22 SVGURLReferenceResolver resolver(m_url, document); | 24 |
23 AtomicString fragmentId = resolver.fragmentIdentifier(); | 25 FetchRequest request(ResourceRequest(document.completeURL(m_url)), |
24 if (resolver.isLocal()) { | 26 FetchInitiatorTypeNames::css); |
25 m_proxy = SVGElementProxy::create(fragmentId); | 27 m_document = |
26 } else { | 28 DocumentResource::fetchSVGDocument(request, document.fetcher()); |
27 m_proxy = | |
28 SVGElementProxy::create(resolver.absoluteUrl().getString(), fragmentId); | |
29 } | 29 } |
30 return *m_proxy; | 30 return m_document; |
31 } | 31 } |
32 | 32 |
33 String CSSURIValue::customCSSText() const { | 33 String CSSURIValue::customCSSText() const { |
34 return serializeURI(m_url); | 34 return serializeURI(m_url); |
35 } | 35 } |
36 | 36 |
37 bool CSSURIValue::equals(const CSSURIValue& other) const { | 37 bool CSSURIValue::equals(const CSSURIValue& other) const { |
38 return m_url == other.m_url; | 38 return m_url == other.m_url; |
39 } | 39 } |
40 | 40 |
41 DEFINE_TRACE_AFTER_DISPATCH(CSSURIValue) { | 41 DEFINE_TRACE_AFTER_DISPATCH(CSSURIValue) { |
42 visitor->trace(m_proxy); | 42 visitor->trace(m_document); |
43 CSSValue::traceAfterDispatch(visitor); | 43 CSSValue::traceAfterDispatch(visitor); |
44 } | 44 } |
45 | 45 |
46 } // namespace blink | 46 } // namespace blink |
OLD | NEW |