Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / CSSFontFaceSrcValue.cpp
1 /*
2  * Copyright (C) 2007, 2010 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "core/css/CSSFontFaceSrcValue.h"
28
29 #include "core/FetchInitiatorTypeNames.h"
30 #include "core/css/StyleSheetContents.h"
31 #include "core/dom/Document.h"
32 #include "core/dom/Node.h"
33 #include "core/fetch/FetchRequest.h"
34 #include "core/fetch/FontResource.h"
35 #include "core/fetch/ResourceFetcher.h"
36 #include "platform/fonts/FontCache.h"
37 #include "platform/fonts/FontCustomPlatformData.h"
38 #include "wtf/text/StringBuilder.h"
39
40 namespace blink {
41
42 bool CSSFontFaceSrcValue::isSupportedFormat() const
43 {
44     // Normally we would just check the format, but in order to avoid conflicts with the old WinIE style of font-face,
45     // we will also check to see if the URL ends with .eot.  If so, we'll go ahead and assume that we shouldn't load it.
46     if (m_format.isEmpty())
47         return m_resource.startsWith("data:", false) || !m_resource.endsWith(".eot", false);
48
49     return FontCustomPlatformData::supportsFormat(m_format);
50 }
51
52 String CSSFontFaceSrcValue::customCSSText() const
53 {
54     StringBuilder result;
55     if (isLocal())
56         result.appendLiteral("local(");
57     else
58         result.appendLiteral("url(");
59     result.append(m_resource);
60     result.append(')');
61     if (!m_format.isEmpty()) {
62         result.appendLiteral(" format(");
63         result.append(m_format);
64         result.append(')');
65     }
66     return result.toString();
67 }
68
69 bool CSSFontFaceSrcValue::hasFailedOrCanceledSubresources() const
70 {
71     return m_fetched && m_fetched->loadFailedOrCanceled();
72 }
73
74 bool CSSFontFaceSrcValue::shouldSetCrossOriginAccessControl(const KURL& resource, SecurityOrigin* securityOrigin)
75 {
76     if (resource.isLocalFile() || resource.protocolIsData())
77         return false;
78     return !securityOrigin->canRequest(resource);
79 }
80
81 FontResource* CSSFontFaceSrcValue::fetch(Document* document)
82 {
83     if (!m_fetched) {
84         FetchRequest request(ResourceRequest(document->completeURL(m_resource)), FetchInitiatorTypeNames::css);
85         SecurityOrigin* securityOrigin = document->securityOrigin();
86         if (shouldSetCrossOriginAccessControl(request.url(), securityOrigin)) {
87             request.setCrossOriginAccessControl(securityOrigin, DoNotAllowStoredCredentials);
88         }
89         request.mutableResourceRequest().setHTTPReferrer(m_referrer);
90         m_fetched = document->fetcher()->fetchFont(request);
91     } else {
92         // FIXME: CSSFontFaceSrcValue::fetch is invoked when @font-face rule
93         // is processed by StyleResolver / StyleEngine.
94         restoreCachedResourceIfNeeded(document);
95     }
96     return m_fetched.get();
97 }
98
99 void CSSFontFaceSrcValue::restoreCachedResourceIfNeeded(Document* document)
100 {
101     ASSERT(m_fetched);
102     ASSERT(document && document->fetcher());
103
104     const String resourceURL = document->completeURL(m_resource);
105     if (document->fetcher()->cachedResource(KURL(ParsedURLString, resourceURL)))
106         return;
107
108     FetchRequest request(ResourceRequest(resourceURL), FetchInitiatorTypeNames::css);
109     document->fetcher()->maybeNotifyInsecureContent(m_fetched.get());
110     document->fetcher()->requestLoadStarted(m_fetched.get(), request, ResourceFetcher::ResourceLoadingFromCache);
111 }
112
113 bool CSSFontFaceSrcValue::equals(const CSSFontFaceSrcValue& other) const
114 {
115     return m_isLocal == other.m_isLocal && m_format == other.m_format && m_resource == other.m_resource;
116 }
117
118 }