HomeSort by relevance Sort by last modified time
    Searched defs:shadowHost (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.cpp 144 ShadowRoot& ElementShadow::addShadowRoot(Element& shadowHost, ShadowRoot::ShadowRootType type)
146 RefPtrWillBeRawPtr<ShadowRoot> shadowRoot = ShadowRoot::create(shadowHost.document(), type);
149 shadowHost.willAddFirstAuthorShadowRoot();
154 shadowRoot->setParentOrShadowHostNode(&shadowHost);
155 shadowRoot->setParentTreeScope(shadowHost.treeScope());
157 shadowHost.notifyNodeInserted(*shadowRoot);
160 InspectorInstrumentation::didPushShadowRoot(&shadowHost, shadowRoot.get());
171 Element* shadowHost = host();
172 ASSERT(shadowHost);
175 InspectorInstrumentation::willPopShadowRoot(shadowHost, oldRoot.get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebNode.cpp 257 WebElement WebNode::shadowHost() const
262 return WebElement(coreNode->shadowHost());
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp 115 return context.element == context.scope->shadowHost() && (!context.previousElement || context.previousElement->isInDescendantTreeOf(context.element));
121 return context.element == context.scope->shadowHost();
335 if (context.scope && context.scope->shadowHost() && context.scope->shadowHost()->treeScope() == context.element->treeScope() && (context.behaviorAtBoundary & BoundaryBehaviorMask) != StaysWithinTreeScope)
338 Element* shadowHost = context.element->shadowHost();
339 if (!shadowHost)
341 nextContext.element = shadowHost;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.cpp 906 for (; node; node = node->shadowHost()) {
    [all...]

Completed in 133 milliseconds