a99b9e80045fb2ed25765ac19b666d88e01dcecf
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / StyleSheetList.cpp
1 /**
2  * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3  * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #include "config.h"
22 #include "core/css/StyleSheetList.h"
23
24 #include "core/HTMLNames.h"
25 #include "core/dom/Document.h"
26 #include "core/dom/StyleEngine.h"
27 #include "core/html/HTMLStyleElement.h"
28 #include "wtf/text/WTFString.h"
29
30 namespace blink {
31
32 using namespace HTMLNames;
33
34 StyleSheetList::StyleSheetList(TreeScope* treeScope)
35     : m_treeScope(treeScope)
36 {
37     ScriptWrappable::init(this);
38 }
39
40 StyleSheetList::~StyleSheetList()
41 {
42 }
43
44 inline const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& StyleSheetList::styleSheets()
45 {
46 #if !ENABLE(OILPAN)
47     if (!m_treeScope)
48         return m_detachedStyleSheets;
49 #endif
50     return document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope);
51 }
52
53 #if !ENABLE(OILPAN)
54 void StyleSheetList::detachFromDocument()
55 {
56     m_detachedStyleSheets = document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope);
57     m_treeScope = nullptr;
58 }
59 #endif
60
61 unsigned StyleSheetList::length()
62 {
63     return styleSheets().size();
64 }
65
66 StyleSheet* StyleSheetList::item(unsigned index)
67 {
68     const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& sheets = styleSheets();
69     return index < sheets.size() ? sheets[index].get() : 0;
70 }
71
72 HTMLStyleElement* StyleSheetList::getNamedItem(const AtomicString& name) const
73 {
74 #if !ENABLE(OILPAN)
75     if (!m_treeScope)
76         return 0;
77 #endif
78
79     // IE also supports retrieving a stylesheet by name, using the name/id of the <style> tag
80     // (this is consistent with all the other collections)
81     // ### Bad implementation because returns a single element (are IDs always unique?)
82     // and doesn't look for name attribute.
83     // But unicity of stylesheet ids is good practice anyway ;)
84     // FIXME: We should figure out if we should change this or fix the spec.
85     Element* element = m_treeScope->getElementById(name);
86     return isHTMLStyleElement(element) ? toHTMLStyleElement(element) : 0;
87 }
88
89 CSSStyleSheet* StyleSheetList::anonymousNamedGetter(const AtomicString& name)
90 {
91     HTMLStyleElement* item = getNamedItem(name);
92     if (!item)
93         return 0;
94     return item->sheet();
95 }
96
97 void StyleSheetList::trace(Visitor* visitor)
98 {
99     visitor->trace(m_treeScope);
100 }
101
102 } // namespace blink