Home | History | Annotate | Download | only in dom

Lines Matching refs:Element

69     class Element;
271 Element* documentElement() const
278 virtual PassRefPtr<Element> createElement(const AtomicString& tagName, ExceptionCode&);
288 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, const String& qualifiedName, ExceptionCode&);
289 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser);
290 Element* getElementById(const AtomicString&) const;
294 Element* elementFromPoint(int x, int y) const;
341 // First searches for an element with the given ID, but if that fails, then looks
345 Element* findAnchor(const String& name);
385 Element* getElementByAccessKey(const String& key) const;
440 void registerFormElementWithState(Element* e) { m_formElementsWithState.add(e); }
441 void unregisterFormElementWithState(Element
598 void setCSSTarget(Element*);
599 Element* cssTarget() const { return m_cssTarget; }
656 CSSStyleDeclaration* getOverrideStyle(Element*, const String& pseudoElt);
659 * Searches through the document, starting from fromNode, for the next selectable element that comes after fromNode.
672 * Searches through the document, starting from fromNode, for the previous selectable element (that comes _before_)
706 // Returns the owning element in the parent document.
708 Element* ownerElement() const;
711 void setTitle(const String&, Element* titleElement = 0);
712 void removeTitle(Element* titleElement);
742 void addElementById(const AtomicString& elementId, Element *element);
743 void removeElementById(const AtomicString& elementId, Element *element);
875 void registerForDocumentActivationCallbacks(Element*);
876 void unregisterForDocumentActivationCallbacks(Element*);
880 void registerForMediaVolumeCallbacks(Element*);
881 void unregisterForMediaVolumeCallbacks(Element*);
999 KURL m_baseElementURL; // The URL set by the <base> element.
1006 // document contains a <base> element, in which case the <base> element
1049 mutable RefPtr<Element> m_documentElement;
1062 ListHashSet<Element*> m_formElementsWithState;
1094 RefPtr<Element> m_titleElement;
1108 Element* m_cssTarget;
1154 mutable HashMap<AtomicStringImpl*, Element*> m_elementsById;
1157 mutable HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey;
1190 HashSet<Element*> m_documentActivationCallbackElements;
1191 HashSet<Element*> m_mediaVolumeCallbackElements;