Searched refs:ShadowRoot (Results 1 - 25 of 63) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/dom/
H A DShadowRoot.cpp28 #include "ShadowRoot.h"
45 COMPILE_ASSERT(sizeof(ShadowRoot) == sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
53 ShadowRoot::ShadowRoot(Document& document, ShadowRootType type) function in class:WebCore::ShadowRoot
62 ShadowRoot::~ShadowRoot()
65 // for this ShadowRoot instance because TreeScope destructor
76 PassRefPtr<Node> ShadowRoot::cloneNode(bool, ExceptionCode& ec)
82 String ShadowRoot::innerHTML() const
87 void ShadowRoot
[all...]
H A DShadowRoot.h40 class ShadowRoot final : public DocumentFragment, public TreeScope {
46 static PassRefPtr<ShadowRoot> create(Document& document, ShadowRootType type)
48 return adoptRef(new ShadowRoot(document, type));
51 virtual ~ShadowRoot();
74 ShadowRoot(Document&, ShadowRootType);
93 inline Element* ShadowRoot::activeElement() const
100 NODE_TYPE_CASTS(ShadowRoot)
102 inline ShadowRoot* Node::shadowRoot() const
H A DContainerNodeAlgorithms.cpp46 if (RefPtr<ShadowRoot> root = toElement(node).shadowRoot()) {
59 if (ShadowRoot* root = node.shadowRoot())
80 if (RefPtr<ShadowRoot> root = toElement(node).shadowRoot()) {
96 if (RefPtr<ShadowRoot> root = toElement(node).shadowRoot())
109 if (ShadowRoot* root = toElement(node).shadowRoot())
144 if (ShadowRoot* shadowRoot = element.shadowRoot())
H A DTreeScopeAdopter.cpp72 if (ShadowRoot* shadow = node->shadowRoot()) {
83 void TreeScopeAdopter::moveShadowTreeToNewDocument(ShadowRoot* shadowRoot, Document* oldDocument, Document* newDocument) const
87 if (ShadowRoot* shadow = node->shadowRoot())
H A DTreeScopeAdopter.h50 void moveShadowTreeToNewDocument(ShadowRoot*, Document* oldDocument, Document* newDocument) const;
H A DTreeScope.h46 class ShadowRoot;
105 TreeScope(ShadowRoot&, Document&);
H A DElementRareData.h31 #include "ShadowRoot.h"
91 ShadowRoot* shadowRoot() const { return m_shadowRoot.get(); }
92 void setShadowRoot(PassRefPtr<ShadowRoot> shadowRoot) { m_shadowRoot = shadowRoot; }
150 RefPtr<ShadowRoot> m_shadowRoot;
H A DElement.h52 class ShadowRoot;
327 ShadowRoot* shadowRoot() const;
328 PassRefPtr<ShadowRoot> createShadowRoot(ExceptionCode&);
330 ShadowRoot* userAgentShadowRoot() const;
331 ShadowRoot& ensureUserAgentShadowRoot();
602 virtual void didAddUserAgentShadowRoot(ShadowRoot*) { }
648 void addShadowRoot(PassRefPtr<ShadowRoot>);
/macosx-10.10/WebCore-7600.1.25/html/shadow/
H A DContentDistributor.cpp51 const Vector<RefPtr<InsertionPoint>>& ContentDistributor::ensureInsertionPointList(ShadowRoot* shadowRoot)
80 if (ShadowRoot* root = host->shadowRoot()) {
97 if (ShadowRoot* root = host->shadowRoot()) {
126 void ContentDistributor::ensureDistribution(ShadowRoot* shadowRoot)
130 Vector<ShadowRoot*, 8> shadowRoots;
132 ShadowRoot* currentRoot = current->shadowRoot();
H A DContentDistributor.h45 class ShadowRoot;
69 static void ensureDistribution(ShadowRoot*);
74 const Vector<RefPtr<InsertionPoint>>& ensureInsertionPointList(ShadowRoot*);
H A DInsertionPoint.cpp79 if (ShadowRoot* root = containingShadowRoot())
87 if (ShadowRoot* root = containingShadowRoot()) {
97 ShadowRoot* root = containingShadowRoot();
154 if (ShadowRoot* shadowRoot = shadowRootOfParentForDistribution(projectedNode)) {
155 if (ShadowRoot* root = projectedNode->containingShadowRoot())
H A DInsertionPoint.h37 #include "ShadowRoot.h"
110 inline ShadowRoot* shadowRootOfParentForDistribution(const Node* node)
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLDetailsElement.h42 virtual void didAddUserAgentShadowRoot(ShadowRoot*) override;
H A DHTMLSummaryElement.h43 virtual void didAddUserAgentShadowRoot(ShadowRoot*) override;
H A DHTMLProgressElement.h64 virtual void didAddUserAgentShadowRoot(ShadowRoot*) override;
H A DHTMLMeterElement.h79 virtual void didAddUserAgentShadowRoot(ShadowRoot*) override;
H A DHTMLKeygenElement.cpp35 #include "ShadowRoot.h"
131 ShadowRoot* root = userAgentShadowRoot();
H A DHTMLPlugInElement.h104 virtual void didAddUserAgentShadowRoot(ShadowRoot*) override;
H A DHTMLSummaryElement.cpp80 void HTMLSummaryElement::didAddUserAgentShadowRoot(ShadowRoot* root)
H A DHTMLTextAreaElement.h70 virtual void didAddUserAgentShadowRoot(ShadowRoot*) override;
/macosx-10.10/WebCore-7600.1.25/Modules/plugins/
H A DQuickTimePluginReplacement.h41 class ShadowRoot;
53 virtual bool installReplacement(ShadowRoot*) override;
H A DYouTubePluginReplacement.h40 class ShadowRoot;
58 virtual bool installReplacement(ShadowRoot*) override;
H A DPluginReplacement.h42 class ShadowRoot;
49 virtual bool installReplacement(ShadowRoot*) = 0;
/macosx-10.10/WebCore-7600.1.25/style/
H A DStyleResolveTree.cpp49 #include "ShadowRoot.h"
493 if (ShadowRoot* shadowRoot = insertionPoint.containingShadowRoot())
517 static void attachShadowRoot(ShadowRoot& shadowRoot)
596 if (ShadowRoot* shadowRoot = current.shadowRoot()) {
649 static void detachShadowRoot(ShadowRoot& shadowRoot, DetachType detachType)
668 if (ShadowRoot* shadowRoot = current.shadowRoot())
780 static void resolveShadowTree(ShadowRoot& shadowRoot, Element& host, Style::Change change)
892 if (ShadowRoot* shadowRoot = current.shadowRoot()) {
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorDOMAgent.h74 class ShadowRoot;
174 void didPushShadowRoot(Element* host, ShadowRoot*);
175 void willPopShadowRoot(Element* host, ShadowRoot*);

Completed in 220 milliseconds

123