OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:styleResolver
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ShadowTreeStyleSheetCollection.cpp
32
#include "core/css/resolver/
StyleResolver
.h"
101
if (
StyleResolver
*
styleResolver
= engine->resolver()) {
104
styleResolver
->setBuildScopedStyleTreeInDocumentOrder(false);
106
// We should not destroy
StyleResolver
when we find any stylesheet update in a shadow tree.
108
resetAllRuleSetsInTreeScope(
styleResolver
);
109
styleResolver
->removePendingAuthorStyleSheets(m_activeAuthorStyleSheets);
110
styleResolver
->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets());
112
styleResolver
->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets());
DocumentStyleSheetCollection.cpp
34
#include "core/css/resolver/
StyleResolver
.h"
168
} else if (
StyleResolver
*
styleResolver
= engine->resolver()) {
171
styleResolver
->setBuildScopedStyleTreeInDocumentOrder(false);
174
resetAllRuleSetsInTreeScope(
styleResolver
);
177
styleResolver
->removePendingAuthorStyleSheets(m_activeAuthorStyleSheets);
178
styleResolver
->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets());
180
styleResolver
->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets());
StyleSheetCollection.cpp
34
#include "core/css/resolver/
StyleResolver
.h"
133
// If all new sheets were added at the end of the list we can just add them to existing
StyleResolver
.
196
// FIXME: since currently all stylesheets are re-added after reseting
styleresolver
,
213
// the
StyleResolver
if we don't need to.
237
void StyleSheetCollection::resetAllRuleSetsInTreeScope(
StyleResolver
*
styleResolver
)
242
styleResolver
->resetAuthorStyle(toContainerNode(*it));
246
styleResolver
->resetAuthorStyle(toContainerNode(*it));
248
styleResolver
->resetAuthorStyle(toContainerNode(m_treeScope.rootNode()));
Element.cpp
42
#include "core/css/resolver/
StyleResolver
.h"
129
ASSERT(m_pushedStyleResolver == m_parent.document().
styleResolver
());
130
if (m_pushedStyleResolver != m_parent.document().
styleResolver
())
138
StyleResolver
* m_pushedStyleResolver;
973
StyleResolver
*
styleResolver
= document().
styleResolver
();
974
bool testShouldInvalidateStyle = inActiveDocument() &&
styleResolver
&& styleChangeType() < SubtreeStyleChange;
[
all
...]
Document.h
154
class
StyleResolver
;
179
// Discards the
StyleResolver
and rebuilds it.
181
// Attempts to use StyleInvalidationAnalysis to avoid discarding the entire
StyleResolver
.
397
StyleResolver
*
styleResolver
() const;
398
StyleResolver
& ensureStyleResolver() const;
[
all
...]
Document.cpp
58
#include "core/css/resolver/
StyleResolver
.h"
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.cpp
31
#include "core/css/resolver/
StyleResolver
.h"
63
StyleResolver
&
styleResolver
= document->ensureStyleResolver();
64
RefPtr<RenderStyle> rootStyle =
styleResolver
.styleForElement(documentElement, 0 /*defaultParent*/, DisallowStyleSharing, MatchOnlyUserAgentRules);
MediaQueryMatcher.cpp
27
#include "core/css/resolver/
StyleResolver
.h"
86
StyleResolver
&
styleResolver
= m_document->ensureStyleResolver();
87
RefPtr<RenderStyle> rootStyle =
styleResolver
.styleForElement(documentElement, 0 /*defaultParent*/, DisallowStyleSharing, MatchOnlyUserAgentRules);
FontFaceSet.cpp
40
#include "core/css/resolver/
StyleResolver
.h"
396
StyleResolver
&
styleResolver
= document()->ensureStyleResolver();
397
styleResolver
.applyPropertiesToStyle(properties, WTF_ARRAY_LENGTH(properties), style.get());
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.h
36
class
StyleResolver
;
44
RuleSet* uncommonAttributeRuleSet,
StyleResolver
&
styleResolver
)
49
, m_styleResolver(
styleResolver
)
75
StyleResolver
& m_styleResolver;
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ShadowRoot.cpp
32
#include "core/css/resolver/
StyleResolver
.h"
169
StyleResolver
&
styleResolver
= document().ensureStyleResolver();
170
styleResolver
.pushParentShadowRoot(*this);
192
styleResolver
.popParentShadowRoot(*this);
248
StyleResolver
&
styleResolver
= document().ensureStyleResolver();
249
styleResolver
.pushParentShadowRoot(*this);
251
styleResolver
.popParentShadowRoot(*this);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp
48
#include "core/css/resolver/
StyleResolver
.h"
950
// FIXME: It's really gross for the inspector to reach in and access
StyleResolver
955
StyleResolver
&
styleResolver
= ownerDocument->ensureStyleResolver();
957
RefPtr<CSSRuleList> matchedRules =
styleResolver
.pseudoCSSRulesForElement(element, elementPseudoId,
StyleResolver
::AllCSSRules, DoNotIncludeStyleSheetInCSSOMWrapper);
958
matchedCSSRules = buildArrayForMatchedRuleList(matchedRules.get(),
styleResolver
, originalElement);
964
RefPtr<CSSRuleList> matchedRules =
styleResolver
.pseudoCSSRulesForElement(element, pseudoId,
StyleResolver
::AllCSSRules, DoNotIncludeStyleSheetInCSSOMWrapper);
968
.setMatches(buildArrayForMatchedRuleList(matchedRules.get(),
styleResolver
, element))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp
35
#include "core/css/resolver/
StyleResolver
.h"
867
if (!document->
styleResolver
() || document->
styleResolver
()->affectedByViewportChange()) {
872
// do not persist across
StyleResolver
rebuilds.
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp
43
#include "core/css/resolver/
StyleResolver
.h"
[
all
...]
Completed in 273 milliseconds