/** * This file is part of the DOM implementation for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2001 Dirk Mueller (mueller@kde.org) * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include "config.h" #include "Document.h" #include "CDATASection.h" #include "Comment.h" #include "DOMImplementation.h" #include "DocLoader.h" #include "DocumentFragment.h" #include "DocumentType.h" #include "EditingText.h" #include "EventNames.h" #include "ExceptionCode.h" #include "Frame.h" #include "FrameTree.h" #include "FrameView.h" #include "HTMLInputElement.h" #include "HTMLNameCollection.h" #include "AccessibilityObjectCache.h" #include "PlatformKeyboardEvent.h" #include "Logging.h" #include "MouseEventWithHitTestResults.h" #include "NameNodeList.h" #include "SegmentedString.h" #include "SelectionController.h" #include "SystemTime.h" #include "VisiblePosition.h" #include "css_stylesheetimpl.h" #include "css_valueimpl.h" #include "csshelper.h" #include "cssstyleselector.h" #include "CSSValueKeywords.h" #include "decoder.h" #include "dom2_eventsimpl.h" #include "Range.h" #include "AbstractView.h" #include "dom_xmlimpl.h" #include "kjs_binding.h" #include "kjs_proxy.h" #include "html_baseimpl.h" #include "HTMLDocument.h" #include "html_headimpl.h" #include "html_imageimpl.h" #include "HTMLElementFactory.h" #include "HTMLNames.h" #include "JSEditor.h" #include "khtml_settings.h" #include "RenderArena.h" #include "RenderCanvas.h" #include "render_frames.h" #include "TextIterator.h" #include "xml_tokenizer.h" #include "xmlhttprequest.h" #include #ifdef KHTML_XSLT #include "XSLStyleSheet.h" #include "XSLTProcessor.h" #endif #ifndef KHTML_NO_XBL #include "xbl_binding_manager.h" using XBL::XBLBindingManager; #endif #if SVG_SUPPORT #include "SVGNames.h" #include "SVGDocumentExtensions.h" #include "SVGElementFactory.h" #include "SVGZoomEvent.h" #include "SVGStyleElement.h" #include "KSVGTimeScheduler.h" #endif namespace WebCore { using namespace EventNames; using namespace HTMLNames; // #define INSTRUMENT_LAYOUT_SCHEDULING 1 // This amount of time must have elapsed before we will even consider scheduling a layout without a delay. // FIXME: For faster machines this value can really be lowered to 200. 250 is adequate, but a little high // for dual G5s. :) const int cLayoutScheduleThreshold = 250; // Use 1 to represent the document's default form. HTMLFormElement* const defaultForm = (HTMLFormElement*) 1; // DOM Level 2 says (letters added): // // a) Name start characters must have one of the categories Ll, Lu, Lo, Lt, Nl. // b) Name characters other than Name-start characters must have one of the categories Mc, Me, Mn, Lm, or Nd. // c) Characters in the compatibility area (i.e. with character code greater than #xF900 and less than #xFFFE) are not allowed in XML names. // d) Characters which have a font or compatibility decomposition (i.e. those with a "compatibility formatting tag" in field 5 of the database -- marked by field 5 beginning with a "<") are not allowed. // e) The following characters are treated as name-start characters rather than name characters, because the property file classifies them as Alphabetic: [#x02BB-#x02C1], #x0559, #x06E5, #x06E6. // f) Characters #x20DD-#x20E0 are excluded (in accordance with Unicode, section 5.14). // g) Character #x00B7 is classified as an extender, because the property list so identifies it. // h) Character #x0387 is added as a name character, because #x00B7 is its canonical equivalent. // i) Characters ':' and '_' are allowed as name-start characters. // j) Characters '-' and '.' are allowed as name characters. // // It also contains complete tables. If we decide it's better, we could include those instead of the following code. static inline bool isValidNameStart(UChar32 c) { // rule (e) above if ((c >= 0x02BB && c <= 0x02C1) || c == 0x559 || c == 0x6E5 || c == 0x6E6) return true; // rule (i) above if (c == ':' || c == '_') return true; // rules (a) and (f) above const uint32_t nameStartMask = U_GC_LL_MASK | U_GC_LU_MASK | U_GC_LO_MASK | U_GC_LT_MASK | U_GC_NL_MASK; if (!(U_GET_GC_MASK(c) & nameStartMask)) return false; // rule (c) above if (c >= 0xF900 && c < 0xFFFE) return false; // rule (d) above UDecompositionType decompType = static_cast(u_getIntPropertyValue(c, UCHAR_DECOMPOSITION_TYPE)); if (decompType == U_DT_FONT || decompType == U_DT_COMPAT) return false; return true; } static inline bool isValidNamePart(UChar32 c) { // rules (a), (e), and (i) above if (isValidNameStart(c)) return true; // rules (g) and (h) above if (c == 0x00B7 || c == 0x0387) return true; // rule (j) above if (c == '-' || c == '.') return true; // rules (b) and (f) above const uint32_t otherNamePartMask = U_GC_MC_MASK | U_GC_ME_MASK | U_GC_MN_MASK | U_GC_LM_MASK | U_GC_ND_MASK; if (!(U_GET_GC_MASK(c) & otherNamePartMask)) return false; // rule (c) above if (c >= 0xF900 && c < 0xFFFE) return false; // rule (d) above UDecompositionType decompType = static_cast(u_getIntPropertyValue(c, UCHAR_DECOMPOSITION_TYPE)); if (decompType == U_DT_FONT || decompType == U_DT_COMPAT) return false; return true; } DeprecatedPtrList * Document::changedDocuments = 0; // FrameView might be 0 Document::Document(DOMImplementation* impl, FrameView *v) : ContainerNode(0) , m_implementation(impl) , m_domtree_version(0) , m_styleSheets(new StyleSheetList) , m_title("") , m_titleSetExplicitly(false) , m_imageLoadEventTimer(this, &Document::imageLoadEventTimerFired) #if !KHTML_NO_XBL , m_bindingManager(new XBLBindingManager(this)) #endif #ifdef KHTML_XSLT , m_transformSource(0) #endif , m_savedRenderer(0) , m_passwordFields(0) , m_secureForms(0) , m_designMode(inherit) , m_selfOnlyRefCount(0) #if SVG_SUPPORT , m_svgExtensions(0) #endif #if __APPLE__ , m_hasDashboardRegions(false) , m_dashboardRegionsDirty(false) #endif , m_accessKeyMapValid(false) , m_createRenderers(true) , m_inPageCache(false) { document.resetSkippingRef(this); m_printing = false; m_view = v; m_renderArena = 0; m_accCache = 0; m_docLoader = new DocLoader(v ? v->frame() : 0, this); visuallyOrdered = false; m_loadingSheet = false; m_bParsing = false; m_docChanged = false; m_tokenizer = 0; pMode = Strict; hMode = XHtml; m_textColor = Color::black; m_elementNames = 0; m_elementNameAlloc = 0; m_elementNameCount = 0; m_attrNames = 0; m_attrNameAlloc = 0; m_attrNameCount = 0; m_defaultView = new AbstractView(this); m_listenerTypes = 0; m_inDocument = true; m_styleSelectorDirty = false; m_inStyleRecalc = false; m_closeAfterStyleRecalc = false; m_usesDescendantRules = false; m_usesSiblingRules = false; m_styleSelector = new CSSStyleSelector(this, m_usersheet, m_styleSheets.get(), !inCompatMode()); m_windowEventListeners.setAutoDelete(true); m_pendingStylesheets = 0; m_ignorePendingStylesheets = false; m_cssTarget = 0; resetLinkColor(); resetVisitedLinkColor(); resetActiveLinkColor(); m_processingLoadEvent = false; m_startTime = currentTime(); m_overMinimumLayoutThreshold = false; m_jsEditor = 0; static int docID = 0; m_docID = docID++; } void Document::removedLastRef() { if (m_selfOnlyRefCount) { // if removing a child removes the last self-only ref, we don't // want the document to be destructed until after // removeAllChildren returns, so we guard ourselves with an // extra self-only ref DocPtr guard(this); // we must make sure not to be retaining any of our children through // these extra pointers or we will create a reference cycle m_docType = 0; m_focusNode = 0; m_hoverNode = 0; m_activeNode = 0; m_titleElement = 0; removeAllChildren(); } else delete this; } Document::~Document() { assert(!renderer()); assert(!m_inPageCache); assert(m_savedRenderer == 0); #if SVG_SUPPORT delete m_svgExtensions; #endif XMLHttpRequest::detachRequests(this); KJS::ScriptInterpreter::forgetAllDOMNodesForDocument(this); if (m_docChanged && changedDocuments) changedDocuments->remove(this); delete m_tokenizer; document.resetSkippingRef(0); delete m_styleSelector; delete m_docLoader; if (m_elementNames) { for (unsigned short id = 0; id < m_elementNameCount; id++) m_elementNames[id]->deref(); delete [] m_elementNames; } if (m_attrNames) { for (unsigned short id = 0; id < m_attrNameCount; id++) m_attrNames[id]->deref(); delete [] m_attrNames; } if (m_renderArena) { delete m_renderArena; m_renderArena = 0; } #ifdef KHTML_XSLT xmlFreeDoc((xmlDocPtr)m_transformSource); #endif #ifndef KHTML_NO_XBL delete m_bindingManager; #endif deleteAllValues(m_markers); if (m_accCache){ delete m_accCache; m_accCache = 0; } m_decoder = 0; if (m_jsEditor) { delete m_jsEditor; m_jsEditor = 0; } deleteAllValues(m_selectedRadioButtons); } void Document::resetLinkColor() { m_linkColor = Color(0, 0, 238); } void Document::resetVisitedLinkColor() { m_visitedLinkColor = Color(85, 26, 139); } void Document::resetActiveLinkColor() { m_activeLinkColor.setNamedColor(DeprecatedString("red")); } void Document::setDocType(PassRefPtr docType) { m_docType = docType; } DocumentType *Document::doctype() const { return m_docType.get(); } DOMImplementation* Document::implementation() const { return m_implementation.get(); } Element* Document::documentElement() const { Node* n = firstChild(); while (n && !n->isElementNode()) n = n->nextSibling(); return static_cast(n); } PassRefPtr Document::createElement(const String &name, ExceptionCode& ec) { return createElementNS(nullAtom, name, ec); } PassRefPtr Document::createDocumentFragment() { return new DocumentFragment(getDocument()); } PassRefPtr Document::createTextNode(const String &data) { return new Text(this, data); } PassRefPtr Document::createComment (const String &data) { return new Comment(this, data); } PassRefPtr Document::createCDATASection(const String &data, ExceptionCode& ec) { if (isHTMLDocument()) { ec = NOT_SUPPORTED_ERR; return 0; } return new CDATASection(this, data); } PassRefPtr Document::createProcessingInstruction(const String &target, const String &data, ExceptionCode& ec) { if (!isValidName(target)) { ec = INVALID_CHARACTER_ERR; return 0; } if (isHTMLDocument()) { ec = NOT_SUPPORTED_ERR; return 0; } return new ProcessingInstruction(this, target, data); } PassRefPtr Document::createEntityReference(const String &name, ExceptionCode& ec) { if (!isValidName(name)) { ec = INVALID_CHARACTER_ERR; return 0; } if (isHTMLDocument()) { ec = NOT_SUPPORTED_ERR; return 0; } return new EntityReference(this, name.impl()); } PassRefPtr Document::createEditingTextNode(const String &text) { return new EditingText(this, text); } PassRefPtr Document::createCSSStyleDeclaration() { return new CSSMutableStyleDeclaration; } PassRefPtr Document::importNode(Node* importedNode, bool deep, ExceptionCode& ec) { ec = 0; switch (importedNode->nodeType()) { case TEXT_NODE: return createTextNode(importedNode->nodeValue()); case CDATA_SECTION_NODE: return createCDATASection(importedNode->nodeValue(), ec); case ENTITY_REFERENCE_NODE: return createEntityReference(importedNode->nodeName(), ec); case PROCESSING_INSTRUCTION_NODE: return createProcessingInstruction(importedNode->nodeName(), importedNode->nodeValue(), ec); case COMMENT_NODE: return createComment(importedNode->nodeValue()); case ELEMENT_NODE: { Element *oldElement = static_cast(importedNode); RefPtr newElement = createElementNS(oldElement->namespaceURI(), oldElement->tagName().toString(), ec); if (ec != 0) return 0; NamedAttrMap* attrs = oldElement->attributes(true); if (attrs) { unsigned length = attrs->length(); for (unsigned i = 0; i < length; i++) { Attribute* attr = attrs->attributeItem(i); newElement->setAttribute(attr->name(), attr->value().impl(), ec); if (ec != 0) return 0; } } newElement->copyNonAttributeProperties(oldElement); if (deep) { for (Node* oldChild = oldElement->firstChild(); oldChild; oldChild = oldChild->nextSibling()) { RefPtr newChild = importNode(oldChild, true, ec); if (ec != 0) return 0; newElement->appendChild(newChild.release(), ec); if (ec != 0) return 0; } } return newElement.release(); } case ATTRIBUTE_NODE: case ENTITY_NODE: case DOCUMENT_NODE: case DOCUMENT_TYPE_NODE: case DOCUMENT_FRAGMENT_NODE: case NOTATION_NODE: break; } ec = NOT_SUPPORTED_ERR; return 0; } PassRefPtr Document::adoptNode(PassRefPtr source, ExceptionCode& ec) { if (!source) return 0; switch (source->nodeType()) { case ENTITY_NODE: case NOTATION_NODE: return 0; case DOCUMENT_NODE: case DOCUMENT_TYPE_NODE: ec = NOT_SUPPORTED_ERR; return 0; case ATTRIBUTE_NODE: { Attr* attr = static_cast(source.get()); if (attr->ownerElement()) attr->ownerElement()->removeAttributeNode(attr, ec); attr->m_specified = true; break; } default: if (source->parentNode()) source->parentNode()->removeChild(source.get(), ec); } for (Node* node = source.get(); node; node = node->traverseNextNode(source.get())) { KJS::ScriptInterpreter::updateDOMNodeDocument(node, node->getDocument(), this); node->setDocument(this); } return source; } PassRefPtr Document::createElementNS(const String &_namespaceURI, const String &qualifiedName, ExceptionCode& ec) { // FIXME: We'd like a faster code path that skips this check for calls from inside the engine where the name is known to be valid. String prefix, localName; if (!parseQualifiedName(qualifiedName, prefix, localName)) { ec = INVALID_CHARACTER_ERR; return 0; } RefPtr e; QualifiedName qName = QualifiedName(AtomicString(prefix), AtomicString(localName), AtomicString(_namespaceURI)); // FIXME: Use registered namespaces and look up in a hash to find the right factory. if (_namespaceURI == xhtmlNamespaceURI) { e = HTMLElementFactory::createHTMLElement(qName.localName(), this, 0, false); if (e && !prefix.isNull()) { e->setPrefix(qName.prefix(), ec); if (ec) return 0; } } #if SVG_SUPPORT else if (_namespaceURI == WebCore::SVGNames::svgNamespaceURI) e = WebCore::SVGElementFactory::createSVGElement(qName, this, false); #endif if (!e) e = new Element(qName, getDocument()); return e.release(); } Element *Document::getElementById(const AtomicString& elementId) const { if (elementId.length() == 0) return 0; Element *element = m_elementsById.get(elementId.impl()); if (element) return element; if (m_duplicateIds.contains(elementId.impl())) { for (Node *n = traverseNextNode(); n != 0; n = n->traverseNextNode()) { if (n->isElementNode()) { element = static_cast(n); if (element->hasID() && element->getAttribute(idAttr) == elementId) { m_duplicateIds.remove(elementId.impl()); m_elementsById.set(elementId.impl(), element); return element; } } } } return 0; } Element* Document::elementFromPoint(int x, int y) const { if (!renderer()) return 0; RenderObject::NodeInfo nodeInfo(true, true); renderer()->layer()->hitTest(nodeInfo, x, y); Node* n = nodeInfo.innerNode(); while (n && !n->isElementNode()) n = n->parentNode(); return static_cast(n); } void Document::addElementById(const AtomicString& elementId, Element* element) { if (!m_elementsById.contains(elementId.impl())) m_elementsById.set(elementId.impl(), element); else m_duplicateIds.add(elementId.impl()); } void Document::removeElementById(const AtomicString& elementId, Element* element) { if (m_elementsById.get(elementId.impl()) == element) m_elementsById.remove(elementId.impl()); else m_duplicateIds.remove(elementId.impl()); } Element* Document::getElementByAccessKey(const String& key) { if (!key.length()) return 0; if (!m_accessKeyMapValid) { for (Node* n = this; n; n = n->traverseNextNode()) { if (!n->isElementNode()) continue; Element* element = static_cast(n); const AtomicString& accessKey = element->getAttribute(accesskeyAttr); if (!accessKey.isEmpty()) m_elementsByAccessKey.set(accessKey.impl(), element); } m_accessKeyMapValid = true; } return m_elementsByAccessKey.get(key.impl()); } void Document::updateTitle() { Frame *p = frame(); if (!p) return; p->setTitle(m_title); } void Document::setTitle(const String& title, Node* titleElement) { if (!titleElement) { // Title set by JavaScript -- overrides any title elements. m_titleSetExplicitly = true; m_titleElement = 0; } else if (titleElement != m_titleElement) { if (m_titleElement) // Only allow the first title element to change the title -- others have no effect. return; m_titleElement = titleElement; } if (m_title == title) return; m_title = title; updateTitle(); } void Document::removeTitle(Node *titleElement) { if (m_titleElement != titleElement) return; // FIXME: Ideally we might want this to search for the first remaining title element, and use it. m_titleElement = 0; if (!m_title.isEmpty()) { m_title = ""; updateTitle(); } } String Document::nodeName() const { return "#document"; } Node::NodeType Document::nodeType() const { return DOCUMENT_NODE; } DeprecatedString Document::nextState() { DeprecatedString state; if (!m_state.isEmpty()) { state = m_state.first(); m_state.remove(m_state.begin()); } return state; } DeprecatedStringList Document::docState() { DeprecatedStringList s; for (DeprecatedPtrListIterator it(m_maintainsState); it.current(); ++it) s.append(it.current()->state()); return s; } Frame *Document::frame() const { return m_view ? m_view->frame() : 0; } PassRefPtr Document::createRange() { return new Range(this); } PassRefPtr Document::createNodeIterator(Node* root, unsigned whatToShow, PassRefPtr filter, bool expandEntityReferences, ExceptionCode& ec) { if (!root) { ec = NOT_SUPPORTED_ERR; return 0; } return new NodeIterator(root, whatToShow, filter, expandEntityReferences); } PassRefPtr Document::createTreeWalker(Node *root, unsigned whatToShow, PassRefPtr filter, bool expandEntityReferences, ExceptionCode& ec) { if (!root) { ec = NOT_SUPPORTED_ERR; return 0; } return new TreeWalker(root, whatToShow, filter, expandEntityReferences); } void Document::setDocumentChanged(bool b) { if (b) { if (!m_docChanged) { if (!changedDocuments) changedDocuments = new DeprecatedPtrList; changedDocuments->append(this); } if (m_accessKeyMapValid) { m_accessKeyMapValid = false; m_elementsByAccessKey.clear(); } } else { if (m_docChanged && changedDocuments) changedDocuments->remove(this); } m_docChanged = b; } void Document::recalcStyle(StyleChange change) { if (m_inStyleRecalc) return; // Guard against re-entrancy. -dwh m_inStyleRecalc = true; if (!renderer()) goto bail_out; if (change == Force) { RenderStyle* oldStyle = renderer()->style(); if (oldStyle) oldStyle->ref(); RenderStyle* _style = new (m_renderArena) RenderStyle(); _style->ref(); _style->setDisplay(BLOCK); _style->setVisuallyOrdered(visuallyOrdered); // ### make the font stuff _really_ work!!!! FontDescription fontDescription; fontDescription.setUsePrinterFont(printing()); if (m_view) { const KHTMLSettings *settings = m_view->frame()->settings(); if (printing() && !settings->shouldPrintBackgrounds()) _style->setForceBackgroundsToWhite(true); const AtomicString& stdfont = settings->stdFontName(); if (!stdfont.isEmpty()) { fontDescription.firstFamily().setFamily(stdfont); fontDescription.firstFamily().appendFamily(0); } m_styleSelector->setFontSize(fontDescription, m_styleSelector->fontSizeForKeyword(CSS_VAL_MEDIUM, inCompatMode())); } _style->setFontDescription(fontDescription); _style->font().update(); if (inCompatMode()) _style->setHtmlHacks(true); // enable html specific rendering tricks StyleChange ch = diff(_style, oldStyle); if (renderer() && ch != NoChange) renderer()->setStyle(_style); if (change != Force) change = ch; _style->deref(m_renderArena); if (oldStyle) oldStyle->deref(m_renderArena); } for (Node* n = fastFirstChild(); n; n = n->nextSibling()) if (change >= Inherit || n->hasChangedChild() || n->changed()) n->recalcStyle(change); if (changed() && m_view) m_view->layout(); bail_out: setChanged(false); setHasChangedChild(false); setDocumentChanged(false); m_inStyleRecalc = false; // If we wanted to emit the implicitClose() during recalcStyle, do so now that we're finished. if (m_closeAfterStyleRecalc) { m_closeAfterStyleRecalc = false; implicitClose(); } } void Document::updateRendering() { if (hasChangedChild()) recalcStyle(NoChange); } void Document::updateDocumentsRendering() { if (!changedDocuments) return; while (Document* doc = changedDocuments->take()) { doc->m_docChanged = false; doc->updateRendering(); } } void Document::updateLayout() { // FIXME: Dave Hyatt's pretty sure we can remove this because layout calls recalcStyle as needed. updateRendering(); // Only do a layout if changes have occurred that make it necessary. if (m_view && renderer() && renderer()->needsLayout()) m_view->layout(); } // FIXME: This is a bad idea and needs to be removed eventually. // Other browsers load stylesheets before they continue parsing the web page. // Since we don't, we can run JavaScript code that needs answers before the // stylesheets are loaded. Doing a layout ignoring the pending stylesheets // lets us get reasonable answers. The long term solution to this problem is // to instead suspend JavaScript execution. void Document::updateLayoutIgnorePendingStylesheets() { bool oldIgnore = m_ignorePendingStylesheets; if (!haveStylesheetsLoaded()) { m_ignorePendingStylesheets = true; updateStyleSelector(); } updateLayout(); m_ignorePendingStylesheets = oldIgnore; } void Document::attach() { assert(!attached()); assert(!m_inPageCache); if (!m_renderArena) m_renderArena = new RenderArena(); // Create the rendering tree setRenderer(new (m_renderArena) RenderCanvas(this, m_view)); recalcStyle(Force); RenderObject* render = renderer(); setRenderer(0); ContainerNode::attach(); setRenderer(render); } void Document::restoreRenderer(RenderObject* render) { setRenderer(render); } void Document::detach() { RenderObject* render = renderer(); // indicate destruction mode, i.e. attached() but renderer == 0 setRenderer(0); if (m_inPageCache) { #if __APPLE__ if (render) getAccObjectCache()->detach(render); #endif return; } // Empty out these lists as a performance optimization, since detaching // all the individual render objects will cause all the RenderImage // objects to remove themselves from the lists. m_imageLoadEventDispatchSoonList.clear(); m_imageLoadEventDispatchingList.clear(); m_hoverNode = 0; m_focusNode = 0; m_activeNode = 0; ContainerNode::detach(); if (render) render->destroy(); m_view = 0; if (m_renderArena) { delete m_renderArena; m_renderArena = 0; } } void Document::removeAllEventListenersFromAllNodes() { m_windowEventListeners.clear(); removeAllDisconnectedNodeEventListeners(); for (Node *n = this; n; n = n->traverseNextNode()) { if (!n->isEventTargetNode()) continue; EventTargetNodeCast(n)->removeAllEventListeners(); } } void Document::registerDisconnectedNodeWithEventListeners(Node* node) { m_disconnectedNodesWithEventListeners.add(node); } void Document::unregisterDisconnectedNodeWithEventListeners(Node* node) { m_disconnectedNodesWithEventListeners.remove(node); } void Document::removeAllDisconnectedNodeEventListeners() { NodeSet::iterator end = m_disconnectedNodesWithEventListeners.end(); for (NodeSet::iterator i = m_disconnectedNodesWithEventListeners.begin(); i != end; ++i) EventTargetNodeCast((*i))->removeAllEventListeners(); m_disconnectedNodesWithEventListeners.clear(); } AccessibilityObjectCache* Document::getAccObjectCache() { #if __APPLE__ // The only document that actually has a AccessibilityObjectCache is the top-level // document. This is because we need to be able to get from any WebCoreAXObject // to any other WebCoreAXObject on the same page. Using a single cache allows // lookups across nested webareas (i.e. multiple documents). if (m_accCache) { // return already known top-level cache if (!ownerElement()) return m_accCache; // In some pages with frames, the cache is created before the sub-webarea is // inserted into the tree. Here, we catch that case and just toss the old // cache and start over. delete m_accCache; m_accCache = 0; } // ask the top-level document for its cache Document *doc = topDocument(); if (doc != this) return doc->getAccObjectCache(); // this is the top-level document, so install a new cache m_accCache = new AccessibilityObjectCache; #endif return m_accCache; } void Document::setVisuallyOrdered() { visuallyOrdered = true; if (renderer()) renderer()->style()->setVisuallyOrdered(true); } void Document::updateSelection() { if (!renderer()) return; RenderCanvas *canvas = static_cast(renderer()); SelectionController s = frame()->selection(); if (!s.isRange()) { canvas->clearSelection(); } else { Position startPos = VisiblePosition(s.start(), s.affinity()).deepEquivalent(); Position endPos = VisiblePosition(s.end(), s.affinity()).deepEquivalent(); if (startPos.isNotNull() && endPos.isNotNull()) { RenderObject *startRenderer = startPos.node()->renderer(); RenderObject *endRenderer = endPos.node()->renderer(); static_cast(renderer())->setSelection(startRenderer, startPos.offset(), endRenderer, endPos.offset()); } } #if __APPLE__ // send the AXSelectedTextChanged notification only if the new selection is non-null, // because null selections are only transitory (e.g. when starting an EditCommand, currently) if (AccessibilityObjectCache::accessibilityEnabled() && s.start().isNotNull() && s.end().isNotNull()) { getAccObjectCache()->postNotificationToTopWebArea(renderer(), "AXSelectedTextChanged"); } #endif } Tokenizer *Document::createTokenizer() { return newXMLTokenizer(this, m_view); } void Document::open() { if ((frame() && frame()->isLoadingMainResource()) || (tokenizer() && tokenizer()->executingScript())) return; implicitOpen(); if (frame()) frame()->didExplicitOpen(); // This is work that we should probably do in clear(), but we can't have it // happen when implicitOpen() is called unless we reorganize Frame code. setURL(DeprecatedString()); if (Document *parent = parentDocument()) setBaseURL(parent->baseURL()); } void Document::cancelParsing() { if (m_tokenizer) { // We have to clear the tokenizer to avoid possibly triggering // the onload handler when closing as a side effect of a cancel-style // change, such as opening a new document or closing the window while // still parsing delete m_tokenizer; m_tokenizer = 0; close(); } } void Document::implicitOpen() { cancelParsing(); clear(); m_tokenizer = createTokenizer(); setParsing(true); } HTMLElement* Document::body() { Node *de = documentElement(); if (!de) return 0; // try to prefer a FRAMESET element over BODY Node* body = 0; for (Node* i = de->firstChild(); i; i = i->nextSibling()) { if (i->hasTagName(framesetTag)) return static_cast(i); if (i->hasTagName(bodyTag)) body = i; } return static_cast(body); } void Document::close() { if (frame()) frame()->endIfNotLoading(); implicitClose(); } void Document::implicitClose() { // If we're in the middle of recalcStyle, we need to defer the close until the style information is accurate and all elements are re-attached. if (m_inStyleRecalc) { m_closeAfterStyleRecalc = true; return; } bool wasLocationChangePending = frame() && frame()->isScheduledLocationChangePending(); bool doload = !parsing() && m_tokenizer && !m_processingLoadEvent && !wasLocationChangePending; if (!doload) return; m_processingLoadEvent = true; // We have to clear the tokenizer, in case someone document.write()s from the // onLoad event handler, as in Radar 3206524. delete m_tokenizer; m_tokenizer = 0; // Create a body element if we don't already have one. // In the case of Radar 3758785, the window.onload was set in some javascript, but never fired because there was no body. // This behavior now matches Firefox and IE. HTMLElement *body = this->body(); if (!body && isHTMLDocument()) { Node *de = documentElement(); if (de) { body = new HTMLBodyElement(this); ExceptionCode ec = 0; de->appendChild(body, ec); if (ec != 0) body = 0; } } dispatchImageLoadEventsNow(); this->dispatchWindowEvent(loadEvent, false, false); if (Frame *p = frame()) p->handledOnloadEvents(); #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("onload fired at %d\n", elapsedTime()); #endif m_processingLoadEvent = false; // Make sure both the initial layout and reflow happen after the onload // fires. This will improve onload scores, and other browsers do it. // If they wanna cheat, we can too. -dwh if (frame() && frame()->isScheduledLocationChangePending() && elapsedTime() < cLayoutScheduleThreshold) { // Just bail out. Before or during the onload we were shifted to another page. // The old i-Bench suite does this. When this happens don't bother painting or laying out. view()->unscheduleRelayout(); return; } if (frame()) frame()->checkEmitLoadEvent(); // Now do our painting/layout, but only if we aren't in a subframe or if we're in a subframe // that has been sized already. Otherwise, our view size would be incorrect, so doing any // layout/painting now would be pointless. if (!ownerElement() || (ownerElement()->renderer() && !ownerElement()->renderer()->needsLayout())) { updateRendering(); // Always do a layout after loading if needed. if (view() && renderer() && (!renderer()->firstChild() || renderer()->needsLayout())) view()->layout(); } #if __APPLE__ if (renderer() && AccessibilityObjectCache::accessibilityEnabled()) getAccObjectCache()->postNotification(renderer(), "AXLoadComplete"); #endif #if SVG_SUPPORT // FIXME: Officially, time 0 is when the outermost recieves its // SVGLoad event, but we don't implement those yet. This is close enough // for now. In some cases we should have fired earlier. if (svgExtensions()) accessSVGExtensions()->timeScheduler()->startAnimations(); #endif } void Document::setParsing(bool b) { m_bParsing = b; if (!m_bParsing && view()) view()->scheduleRelayout(); #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement() && !m_bParsing) printf("Parsing finished at %d\n", elapsedTime()); #endif } bool Document::shouldScheduleLayout() { // We can update layout if: // (a) we actually need a layout // (b) our stylesheets are all loaded // (c) we have a return (renderer() && renderer()->needsLayout() && haveStylesheetsLoaded() && documentElement() && documentElement()->renderer() && (!documentElement()->hasTagName(htmlTag) || body())); } int Document::minimumLayoutDelay() { if (m_overMinimumLayoutThreshold) return 0; int elapsed = elapsedTime(); m_overMinimumLayoutThreshold = elapsed > cLayoutScheduleThreshold; // We'll want to schedule the timer to fire at the minimum layout threshold. return kMax(0, cLayoutScheduleThreshold - elapsed); } int Document::elapsedTime() const { return static_cast((currentTime() - m_startTime) * 1000); } void Document::write(const String &text) { write(text.deprecatedString()); } void Document::write(const DeprecatedString &text) { #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("Beginning a document.write at %d\n", elapsedTime()); #endif if (!m_tokenizer) { open(); assert(m_tokenizer); write(DeprecatedString("")); } m_tokenizer->write(text, false); #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("Ending a document.write at %d\n", elapsedTime()); #endif } void Document::writeln(const String &text) { write(text); write(String("\n")); } void Document::finishParsing() { #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("Received all data at %d\n", elapsedTime()); #endif // Let the tokenizer go through as much data as it can. There will be three possible outcomes after // finish() is called: // (1) All remaining data is parsed, document isn't loaded yet // (2) All remaining data is parsed, document is loaded, tokenizer gets deleted // (3) Data is still remaining to be parsed. if (m_tokenizer) m_tokenizer->finish(); } void Document::clear() { delete m_tokenizer; m_tokenizer = 0; removeChildren(); DeprecatedPtrListIterator it(m_windowEventListeners); for (; it.current();) m_windowEventListeners.removeRef(it.current()); } void Document::setURL(const DeprecatedString& url) { m_url = url; if (m_styleSelector) m_styleSelector->setEncodedURL(m_url); } void Document::setStyleSheet(const String &url, const String &sheet) { m_sheet = new CSSStyleSheet(this, url); m_sheet->parseString(sheet); m_loadingSheet = false; updateStyleSelector(); } void Document::setUserStyleSheet(const DeprecatedString& sheet) { if (m_usersheet != sheet) { m_usersheet = sheet; updateStyleSelector(); } } CSSStyleSheet* Document::elementSheet() { if (!m_elemSheet) m_elemSheet = new CSSStyleSheet(this, baseURL()); return m_elemSheet.get(); } void Document::determineParseMode(const DeprecatedString &/*str*/) { // For XML documents use strict parse mode. HTML docs will override this method to // determine their parse mode. pMode = Strict; hMode = XHtml; } Node *Document::nextFocusNode(Node *fromNode) { unsigned short fromTabIndex; if (!fromNode) { // No starting node supplied; begin with the top of the document Node *n; int lowestTabIndex = 65535; for (n = this; n != 0; n = n->traverseNextNode()) { if (n->isKeyboardFocusable()) { if ((n->tabIndex() > 0) && (n->tabIndex() < lowestTabIndex)) lowestTabIndex = n->tabIndex(); } } if (lowestTabIndex == 65535) lowestTabIndex = 0; // Go to the first node in the document that has the desired tab index for (n = this; n != 0; n = n->traverseNextNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == lowestTabIndex)) return n; } return 0; } else { fromTabIndex = fromNode->tabIndex(); } if (fromTabIndex == 0) { // Just need to find the next selectable node after fromNode (in document order) that doesn't have a tab index Node *n = fromNode->traverseNextNode(); while (n && !(n->isKeyboardFocusable() && n->tabIndex() == 0)) n = n->traverseNextNode(); return n; } else { // Find the lowest tab index out of all the nodes except fromNode, that is greater than or equal to fromNode's // tab index. For nodes with the same tab index as fromNode, we are only interested in those that come after // fromNode in document order. // If we don't find a suitable tab index, the next focus node will be one with a tab index of 0. unsigned short lowestSuitableTabIndex = 65535; Node *n; bool reachedFromNode = false; for (n = this; n != 0; n = n->traverseNextNode()) { if (n->isKeyboardFocusable() && ((reachedFromNode && (n->tabIndex() >= fromTabIndex)) || (!reachedFromNode && (n->tabIndex() > fromTabIndex))) && (n->tabIndex() < lowestSuitableTabIndex) && (n != fromNode)) { // We found a selectable node with a tab index at least as high as fromNode's. Keep searching though, // as there may be another node which has a lower tab index but is still suitable for use. lowestSuitableTabIndex = n->tabIndex(); } if (n == fromNode) reachedFromNode = true; } if (lowestSuitableTabIndex == 65535) { // No next node with a tab index -> just take first node with tab index of 0 Node *n = this; while (n && !(n->isKeyboardFocusable() && n->tabIndex() == 0)) n = n->traverseNextNode(); return n; } // Search forwards from fromNode for (n = fromNode->traverseNextNode(); n != 0; n = n->traverseNextNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == lowestSuitableTabIndex)) return n; } // The next node isn't after fromNode, start from the beginning of the document for (n = this; n != fromNode; n = n->traverseNextNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == lowestSuitableTabIndex)) return n; } assert(false); // should never get here return 0; } } Node *Document::previousFocusNode(Node *fromNode) { Node *lastNode = this; while (lastNode->lastChild()) lastNode = lastNode->lastChild(); if (!fromNode) { // No starting node supplied; begin with the very last node in the document Node *n; int highestTabIndex = 0; for (n = lastNode; n != 0; n = n->traversePreviousNode()) { if (n->isKeyboardFocusable()) { if (n->tabIndex() == 0) return n; else if (n->tabIndex() > highestTabIndex) highestTabIndex = n->tabIndex(); } } // No node with a tab index of 0; just go to the last node with the highest tab index for (n = lastNode; n != 0; n = n->traversePreviousNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == highestTabIndex)) return n; } return 0; } else { unsigned short fromTabIndex = fromNode->tabIndex(); if (fromTabIndex == 0) { // Find the previous selectable node before fromNode (in document order) that doesn't have a tab index Node *n = fromNode->traversePreviousNode(); while (n && !(n->isKeyboardFocusable() && n->tabIndex() == 0)) n = n->traversePreviousNode(); if (n) return n; // No previous nodes with a 0 tab index, go to the last node in the document that has the highest tab index int highestTabIndex = 0; for (n = this; n != 0; n = n->traverseNextNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() > highestTabIndex)) highestTabIndex = n->tabIndex(); } if (highestTabIndex == 0) return 0; for (n = lastNode; n != 0; n = n->traversePreviousNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == highestTabIndex)) return n; } assert(false); // should never get here return 0; } else { // Find the lowest tab index out of all the nodes except fromNode, that is less than or equal to fromNode's // tab index. For nodes with the same tab index as fromNode, we are only interested in those before // fromNode. // If we don't find a suitable tab index, then there will be no previous focus node. unsigned short highestSuitableTabIndex = 0; Node *n; bool reachedFromNode = false; for (n = this; n != 0; n = n->traverseNextNode()) { if (n->isKeyboardFocusable() && ((!reachedFromNode && (n->tabIndex() <= fromTabIndex)) || (reachedFromNode && (n->tabIndex() < fromTabIndex))) && (n->tabIndex() > highestSuitableTabIndex) && (n != fromNode)) { // We found a selectable node with a tab index no higher than fromNode's. Keep searching though, as // there may be another node which has a higher tab index but is still suitable for use. highestSuitableTabIndex = n->tabIndex(); } if (n == fromNode) reachedFromNode = true; } if (highestSuitableTabIndex == 0) { // No previous node with a tab index. Since the order specified by HTML is nodes with tab index > 0 // first, this means that there is no previous node. return 0; } // Search backwards from fromNode for (n = fromNode->traversePreviousNode(); n != 0; n = n->traversePreviousNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == highestSuitableTabIndex)) return n; } // The previous node isn't before fromNode, start from the end of the document for (n = lastNode; n != fromNode; n = n->traversePreviousNode()) { if (n->isKeyboardFocusable() && (n->tabIndex() == highestSuitableTabIndex)) return n; } assert(false); // should never get here return 0; } } } int Document::nodeAbsIndex(Node *node) { assert(node->getDocument() == this); int absIndex = 0; for (Node *n = node; n && n != this; n = n->traversePreviousNode()) absIndex++; return absIndex; } Node *Document::nodeWithAbsIndex(int absIndex) { Node *n = this; for (int i = 0; n && (i < absIndex); i++) { n = n->traverseNextNode(); } return n; } void Document::processHttpEquiv(const String &equiv, const String &content) { assert(!equiv.isNull() && !content.isNull()); Frame *frame = this->frame(); if (equalIgnoringCase(equiv, "default-style")) { // The preferred style set has been overridden as per section // 14.3.2 of the HTML4.0 specification. We need to update the // sheet used variable and then update our style selector. // For more info, see the test at: // http://www.hixie.ch/tests/evil/css/import/main/preferred.html // -dwh m_selectedStylesheetSet = content; m_preferredStylesheetSet = content; updateStyleSelector(); } else if (equalIgnoringCase(equiv, "refresh") && frame->metaRefreshEnabled()) { // get delay and url DeprecatedString str = content.deprecatedString().stripWhiteSpace(); int pos = str.find(RegularExpression("[;,]")); if (pos == -1) pos = str.find(RegularExpression("[ \t]")); if (pos == -1) // There can be no url (David) { bool ok = false; int delay = 0; delay = str.toInt(&ok); // We want a new history item if the refresh timeout > 1 second if(ok && frame) frame->scheduleRedirection(delay, frame->url().url(), delay <= 1); } else { double delay = 0; bool ok = false; delay = str.left(pos).stripWhiteSpace().toDouble(&ok); pos++; while(pos < (int)str.length() && str[pos].isSpace()) pos++; str = str.mid(pos); if (str.find("url", 0, false) == 0) str = str.mid(3); str = str.stripWhiteSpace(); if (str.length() && str[0] == '=') str = str.mid(1).stripWhiteSpace(); str = parseURL(String(str)).deprecatedString(); if (ok && frame) // We want a new history item if the refresh timeout > 1 second frame->scheduleRedirection(delay, completeURL(str), delay <= 1); } } else if (equalIgnoringCase(equiv, "expires")) { DeprecatedString str = content.deprecatedString().stripWhiteSpace(); time_t expire_date = str.toInt(); if (m_docLoader) m_docLoader->setExpireDate(expire_date); } else if ((equalIgnoringCase(equiv, "pragma") || equalIgnoringCase(equiv, "cache-control")) && frame) { DeprecatedString str = content.deprecatedString().lower().stripWhiteSpace(); KURL url = frame->url(); } else if (equalIgnoringCase(equiv, "set-cookie")) { // ### make setCookie work on XML documents too; e.g. in case of if (isHTMLDocument()) static_cast(this)->setCookie(content); } } MouseEventWithHitTestResults Document::prepareMouseEvent(bool readonly, bool active, bool mouseMove, int x, int y, const PlatformMouseEvent& event) { if (!renderer()) return MouseEventWithHitTestResults(event, String(), String(), 0); assert(renderer()->isCanvas()); RenderObject::NodeInfo renderInfo(readonly, active, mouseMove); renderer()->layer()->hitTest(renderInfo, x, y); String href; String target; if (renderInfo.URLElement()) { Element* e = renderInfo.URLElement(); href = parseURL(e->getAttribute(hrefAttr)); if (!href.isNull()) target = e->getAttribute(targetAttr); } if (!readonly) updateRendering(); return MouseEventWithHitTestResults(event, href, target, renderInfo.innerNode()); } // DOM Section 1.1.1 bool Document::childAllowed(Node *newChild) { // Documents may contain a maximum of one Element child if (newChild->isElementNode()) { Node *c; for (c = firstChild(); c; c = c->nextSibling()) { if (c->isElementNode()) return false; } } // Documents may contain a maximum of one DocumentType child if (newChild->nodeType() == DOCUMENT_TYPE_NODE) { Node *c; for (c = firstChild(); c; c = c->nextSibling()) { if (c->nodeType() == DOCUMENT_TYPE_NODE) return false; } } return childTypeAllowed(newChild->nodeType()); } bool Document::childTypeAllowed(NodeType type) { switch (type) { case ELEMENT_NODE: case PROCESSING_INSTRUCTION_NODE: case COMMENT_NODE: case DOCUMENT_TYPE_NODE: return true; default: return false; } } PassRefPtr Document::cloneNode(bool /*deep*/) { // Spec says cloning Document nodes is "implementation dependent" // so we do not support it... return 0; } StyleSheetList* Document::styleSheets() { return m_styleSheets.get(); } String Document::preferredStylesheetSet() { return m_preferredStylesheetSet; } String Document::selectedStylesheetSet() { return m_selectedStylesheetSet; } void Document::setSelectedStylesheetSet(const String& aString) { m_selectedStylesheetSet = aString; updateStyleSelector(); if (renderer()) renderer()->repaint(); } // This method is called whenever a top-level stylesheet has finished loading. void Document::stylesheetLoaded() { // Make sure we knew this sheet was pending, and that our count isn't out of sync. assert(m_pendingStylesheets > 0); m_pendingStylesheets--; #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("Stylesheet loaded at time %d. %d stylesheets still remain.\n", elapsedTime(), m_pendingStylesheets); #endif updateStyleSelector(); } void Document::updateStyleSelector() { // Don't bother updating, since we haven't loaded all our style info yet. if (!haveStylesheetsLoaded()) return; #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("Beginning update of style selector at time %d.\n", elapsedTime()); #endif recalcStyleSelector(); recalcStyle(Force); #ifdef INSTRUMENT_LAYOUT_SCHEDULING if (!ownerElement()) printf("Finished update of style selector at time %d\n", elapsedTime()); #endif if (renderer()) { renderer()->setNeedsLayoutAndMinMaxRecalc(); if (view()) view()->scheduleRelayout(); } } DeprecatedStringList Document::availableStyleSheets() const { return m_availableSheets; } void Document::recalcStyleSelector() { if (!renderer() || !attached()) return; DeprecatedPtrList oldStyleSheets = m_styleSheets->styleSheets; m_styleSheets->styleSheets.clear(); m_availableSheets.clear(); Node *n; for (n = this; n; n = n->traverseNextNode()) { StyleSheet *sheet = 0; if (n->nodeType() == PROCESSING_INSTRUCTION_NODE) { // Processing instruction (XML documents only) ProcessingInstruction* pi = static_cast(n); sheet = pi->sheet(); #ifdef KHTML_XSLT // Don't apply XSL transforms to already transformed documents -- if (pi->isXSL() && !transformSourceDocument()) { // Don't apply XSL transforms until loading is finished. if (!parsing()) applyXSLTransform(pi); return; } #endif if (!sheet && !pi->localHref().isEmpty()) { // Processing instruction with reference to an element in this document - e.g. // , with the element // heading { color: red; } at some location in // the document Element* elem = getElementById(pi->localHref().impl()); if (elem) { String sheetText(""); Node *c; for (c = elem->firstChild(); c; c = c->nextSibling()) { if (c->nodeType() == TEXT_NODE || c->nodeType() == CDATA_SECTION_NODE) sheetText += c->nodeValue(); } CSSStyleSheet *cssSheet = new CSSStyleSheet(this); cssSheet->parseString(sheetText); pi->setStyleSheet(cssSheet); sheet = cssSheet; } } } else if (n->isHTMLElement() && (n->hasTagName(linkTag) || n->hasTagName(styleTag))) { HTMLElement *e = static_cast(n); DeprecatedString title = e->getAttribute(titleAttr).deprecatedString(); bool enabledViaScript = false; if (e->hasLocalName(linkTag)) { // element HTMLLinkElement* l = static_cast(n); if (l->isLoading() || l->isDisabled()) continue; if (!l->sheet()) title = DeprecatedString::null; enabledViaScript = l->isEnabledViaScript(); } // Get the current preferred styleset. This is the // set of sheets that will be enabled. if (e->hasLocalName(linkTag)) sheet = static_cast(n)->sheet(); else //