Searched refs:shadowRoot (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DElementShadow.cpp82 ContentDistributor::ensureDistribution(shadowRoot());
84 if (ShadowRoot* root = shadowRoot()) {
92 if (ShadowRoot* root = shadowRoot()) {
100 ASSERT(shadowRoot());
101 return shadowRoot()->childNeedsStyleRecalc();
106 ASSERT(shadowRoot());
107 return shadowRoot()->needsStyleRecalc();
112 if (ShadowRoot* root = shadowRoot())
118 if (ShadowRoot* root = shadowRoot()) {
H A DContainerNodeAlgorithms.cpp50 if (RefPtr<ShadowRoot> root = shadow->shadowRoot()) {
64 if (ShadowRoot* root = node->shadowRoot())
86 if (RefPtr<ShadowRoot> root = shadow->shadowRoot()) {
104 if (RefPtr<ShadowRoot> root = shadow->shadowRoot())
111 if (ShadowRoot* root = shadow->shadowRoot())
125 if (ShadowRoot* root = shadow->shadowRoot())
H A DElementShadow.h54 ShadowRoot* shadowRoot() const { return m_shadowRoot.get(); } function in class:WebCore::ElementShadow
87 inline ShadowRoot* Node::shadowRoot() const function in class:WebCore::Node
92 return shadow->shadowRoot();
H A DComposedShadowTreeWalker.cpp101 return shadow ? traverseLightChildren(shadow->shadowRoot(), direction)
238 Node* ComposedShadowTreeWalker::traverseParentBackToShadowRootOrHost(const ShadowRoot* shadowRoot, ParentTraversalDetails* details) const argument
240 ASSERT(shadowRoot);
244 details->didTraverseShadowRoot(shadowRoot);
245 return shadowRoot->host();
248 return const_cast<ShadowRoot*>(shadowRoot);
H A DEventRetargeter.cpp39 static inline bool inTheSameScope(ShadowRoot* shadowRoot, EventTarget* target) argument
41 return target->toNode() && target->toNode()->treeScope()->rootNode() == shadowRoot;
44 static inline EventDispatchBehavior determineDispatchBehavior(Event* event, ShadowRoot* shadowRoot, EventTarget* target) argument
52 if (element->isMediaElement() && shadowRoot && shadowRoot->host() == element)
56 UNUSED_PARAM(shadowRoot);
63 if (inTheSameScope(shadowRoot, target)
H A DTreeScopeAdopter.cpp75 if (ShadowRoot* shadow = node->shadowRoot()) {
89 if (ShadowRoot* shadow = node->shadowRoot())
H A DNode.cpp1802 for (const ShadowRoot* shadowRoot = toShadowRoot(node); shadowRoot && shadowRoot != node; shadowRoot = shadowRoot->shadowRoot())
1857 if (ShadowRoot* shadowRoot = node->shadowRoot())
1858 traverseTreeAndMark(indent.toString(), shadowRoot, markedNode1, markedLabel1, markedNode2, markedLabel2);
1906 if (ShadowRoot* shadowRoot
[all...]
H A DRange.h113 ShadowRoot* shadowRoot() const;
H A DElement.cpp1699 ShadowRoot* shadowRoot = elementShadow->shadowRoot();
1700 if (shadowRoot->type() == ShadowRoot::AuthorShadowRoot)
1701 return shadowRoot;
1708 if (ShadowRoot* shadowRoot = elementShadow->shadowRoot()) {
1709 ASSERT(shadowRoot->type() == ShadowRoot::UserAgentShadowRoot);
1710 return shadowRoot;
1719 ShadowRoot* shadowRoot = userAgentShadowRoot();
1720 if (!shadowRoot) {
[all...]
H A DNode.h286 ShadowRoot* shadowRoot() const;
/macosx-10.9.5/WebCore-7537.78.1/Resources/
H A DplugIns.js3 function createOverlay(shadowRoot, titleText, subtitleText)
35 shadowRoot.appendChild(shadowContainer);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleScopeResolver.cpp160 inline RuleSet* StyleScopeResolver::ensureAtHostRuleSetFor(const ShadowRoot* shadowRoot) argument
162 ScopedRuleSetMap::AddResult addResult = m_atHostRules.add(shadowRoot, nullptr);
168 inline RuleSet* StyleScopeResolver::atHostRuleSetFor(const ShadowRoot* shadowRoot) const
170 ScopedRuleSetMap::const_iterator it = m_atHostRules.find(shadowRoot);
180 ShadowRoot* shadowRoot = scope->containingShadowRoot();
181 if (!shadowRoot || !shadowRoot->host())
184 RuleSet* rule = ensureAtHostRuleSetFor(shadowRoot);
210 if (ShadowRoot* shadowRoot = shadow->shadowRoot()) {
[all...]
H A DStyleResolver.cpp325 void StyleResolver::pushParentShadowRoot(const ShadowRoot* shadowRoot) argument
327 ASSERT(shadowRoot->host());
329 m_scopeResolver->push(shadowRoot, shadowRoot->host());
332 void StyleResolver::popParentShadowRoot(const ShadowRoot* shadowRoot) argument
334 ASSERT(shadowRoot->host());
336 m_scopeResolver->pop(shadowRoot);
/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DContentDistributor.cpp54 const Vector<RefPtr<InsertionPoint> >& ContentDistributor::ensureInsertionPointList(ShadowRoot* shadowRoot) argument
62 for (Element* element = ElementTraversal::firstWithin(shadowRoot); element; element = ElementTraversal::next(element, shadowRoot)) {
83 if (ShadowRoot* root = host->shadowRoot()) {
100 if (ShadowRoot* root = host->shadowRoot()) {
129 void ContentDistributor::ensureDistribution(ShadowRoot* shadowRoot) argument
131 ASSERT(shadowRoot);
134 for (Element* current = shadowRoot->host(); current; current = current->shadowHost()) {
H A DInsertionPoint.cpp56 if (ShadowRoot* shadowRoot = containingShadowRoot())
57 ContentDistributor::ensureDistribution(shadowRoot);
68 if (ShadowRoot* shadowRoot = containingShadowRoot())
69 ContentDistributor::ensureDistribution(shadowRoot);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DSuggestionBoxHandler.cpp104 if (ShadowRoot* shadowRoot = m_inputElement->userAgentShadowRoot()) {
106 shadowRoot->removeChild(m_dropdownBox.get(), ec);
211 ShadowRoot* shadowRoot = m_inputElement->ensureUserAgentShadowRoot(); local
213 // Return if shadowRoot is null
214 if (!shadowRoot)
227 shadowRoot->appendChild(m_dropdownBox.get(), ec);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DValidationMessage.cpp178 ShadowRoot* shadowRoot = m_element->ensureUserAgentShadowRoot(); local
186 shadowRoot->appendChild(m_bubble.get(), ASSERT_NO_EXCEPTION);
H A DTextFieldInputType.cpp244 ShadowRoot* shadowRoot = element()->userAgentShadowRoot(); local
247 shadowRoot->appendChild(m_container, IGNORE_EXCEPTION);
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTRefElement.cpp154 ShadowRoot* root = shadow()->shadowRoot();
171 Node* container = shadow()->shadowRoot()->firstChild();
H A DSVGUseElement.cpp402 if (ShadowRoot* shadowTreeRootElement = shadow()->shadowRoot())
494 ShadowRoot* shadowTreeRootElement = shadow()->shadowRoot();
716 shadow()->shadowRoot()->appendChild(newChild.release());
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderFileUploadControl.cpp233 Node* buttonNode = input->shadow()->shadowRoot()->firstChild();
/macosx-10.9.5/WebCore-7537.78.1/testing/
H A DInternals.idl42 [RaisesException] ShadowRoot shadowRoot(Element host);
46 [RaisesException] Node shadowRoot(Element host);
H A DInternals.h91 ShadowRootIfShadowDOMEnabledOrNode* shadowRoot(Element* host, ExceptionCode&);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DInPageSearchManager.cpp349 ShadowRoot* shadowTreeRoot = searchRange->shadowRoot();
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A Dhtmlediting.cpp1149 ShadowRoot* shadowRoot = p.anchorNode()->containingShadowRoot(); local
1151 if (shadowRoot)
1152 scope = shadowRoot;

Completed in 247 milliseconds

12