Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / LinkRelAttribute.cpp
1 /*
2  * Copyright (C) 2011 Google 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 are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  */
31
32 #include "config.h"
33 #include "core/html/LinkRelAttribute.h"
34
35 #include "RuntimeEnabledFeatures.h"
36 #include "wtf/text/WTFString.h"
37
38 namespace WebCore {
39
40 LinkRelAttribute::LinkRelAttribute()
41     : m_iconType(InvalidIcon)
42     , m_isStyleSheet(false)
43     , m_isAlternate(false)
44     , m_isDNSPrefetch(false)
45     , m_isLinkPrefetch(false)
46     , m_isLinkSubresource(false)
47     , m_isLinkPrerender(false)
48     , m_isLinkNext(false)
49     , m_isImport(false)
50 {
51 }
52
53 LinkRelAttribute::LinkRelAttribute(const String& rel)
54     : m_iconType(InvalidIcon)
55     , m_isStyleSheet(false)
56     , m_isAlternate(false)
57     , m_isDNSPrefetch(false)
58     , m_isLinkPrefetch(false)
59     , m_isLinkSubresource(false)
60     , m_isLinkPrerender(false)
61     , m_isLinkNext(false)
62     , m_isImport(false)
63 {
64     if (equalIgnoringCase(rel, "stylesheet")) {
65         m_isStyleSheet = true;
66     } else if (equalIgnoringCase(rel, "icon") || equalIgnoringCase(rel, "shortcut icon")) {
67         m_iconType = Favicon;
68     } else if (equalIgnoringCase(rel, "dns-prefetch")) {
69         m_isDNSPrefetch = true;
70     } else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
71         m_isStyleSheet = true;
72         m_isAlternate = true;
73     } else if (equalIgnoringCase(rel, "import")) {
74         m_isImport = true;
75     } else if (equalIgnoringCase(rel, "apple-touch-icon")) {
76         if (RuntimeEnabledFeatures::touchIconLoadingEnabled()) {
77             m_iconType = TouchIcon;
78         }
79     } else if (equalIgnoringCase(rel, "apple-touch-icon-precomposed")) {
80         if (RuntimeEnabledFeatures::touchIconLoadingEnabled()) {
81             m_iconType = TouchPrecomposedIcon;
82         }
83     } else {
84         // Tokenize the rel attribute and set bits based on specific keywords that we find.
85         String relCopy = rel;
86         relCopy.replace('\n', ' ');
87         Vector<String> list;
88         relCopy.split(' ', list);
89         Vector<String>::const_iterator end = list.end();
90         for (Vector<String>::const_iterator it = list.begin(); it != end; ++it) {
91             if (equalIgnoringCase(*it, "stylesheet")) {
92                 m_isStyleSheet = true;
93             } else if (equalIgnoringCase(*it, "alternate")) {
94                 m_isAlternate = true;
95             } else if (equalIgnoringCase(*it, "icon")) {
96                 m_iconType = Favicon;
97             } else if (equalIgnoringCase(*it, "prefetch")) {
98                 m_isLinkPrefetch = true;
99             } else if (equalIgnoringCase(*it, "subresource")) {
100                 m_isLinkSubresource = true;
101             } else if (equalIgnoringCase(*it, "prerender")) {
102                 m_isLinkPrerender = true;
103             } else if (equalIgnoringCase(*it, "next")) {
104                 m_isLinkNext = true;
105             } else if (equalIgnoringCase(*it, "apple-touch-icon")) {
106                 if (RuntimeEnabledFeatures::touchIconLoadingEnabled()) {
107                     m_iconType = TouchIcon;
108                 }
109             } else if (equalIgnoringCase(*it, "apple-touch-icon-precomposed")) {
110                 if (RuntimeEnabledFeatures::touchIconLoadingEnabled()) {
111                     m_iconType = TouchPrecomposedIcon;
112                 }
113             }
114         }
115     }
116 }
117
118 }