/* * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2001 Dirk Mueller (mueller@kde.org) * (C) 2006 Alexey Proskuryakov (ap@webkit.org) * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserved. * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/) * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. * * 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., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "config.h" #include "core/dom/Document.h" #include "HTMLElementFactory.h" #include "HTMLNames.h" #include "RuntimeEnabledFeatures.h" #include "SVGElementFactory.h" #include "SVGNames.h" #include "XMLNSNames.h" #include "XMLNames.h" #include "bindings/v8/CustomElementConstructorBuilder.h" #include "bindings/v8/Dictionary.h" #include "bindings/v8/ExceptionMessages.h" #include "bindings/v8/ExceptionState.h" #include "bindings/v8/ExceptionStatePlaceholder.h" #include "bindings/v8/ScriptController.h" #include "core/accessibility/AXObjectCache.h" #include "core/animation/AnimationClock.h" #include "core/animation/DocumentAnimations.h" #include "core/animation/DocumentTimeline.h" #include "core/animation/css/TransitionTimeline.h" #include "core/css/CSSDefaultStyleSheets.h" #include "core/css/CSSFontSelector.h" #include "core/css/CSSStyleDeclaration.h" #include "core/css/CSSStyleSheet.h" #include "core/css/MediaQueryMatcher.h" #include "core/css/StylePropertySet.h" #include "core/css/StyleSheetContents.h" #include "core/css/StyleSheetList.h" #include "core/css/resolver/FontBuilder.h" #include "core/css/resolver/StyleResolver.h" #include "core/css/resolver/StyleResolverStats.h" #include "core/dom/AddConsoleMessageTask.h" #include "core/dom/Attr.h" #include "core/dom/CDATASection.h" #include "core/dom/Comment.h" #include "core/dom/ContextFeatures.h" #include "core/dom/DOMImplementation.h" #include "core/dom/DOMNamedFlowCollection.h" #include "core/dom/DocumentFragment.h" #include "core/dom/DocumentLifecycleNotifier.h" #include "core/dom/DocumentLifecycleObserver.h" #include "core/dom/DocumentMarkerController.h" #include "core/dom/DocumentSharedObjectPool.h" #include "core/dom/DocumentType.h" #include "core/dom/Element.h" #include "core/dom/ElementTraversal.h" #include "core/dom/ExceptionCode.h" #include "core/dom/ExecutionContextTask.h" #include "core/dom/MainThreadTaskRunner.h" #include "core/dom/NamedFlowCollection.h" #include "core/dom/NodeChildRemovalTracker.h" #include "core/dom/NodeFilter.h" #include "core/dom/NodeIterator.h" #include "core/dom/NodeRareData.h" #include "core/dom/NodeRenderStyle.h" #include "core/dom/NodeRenderingTraversal.h" #include "core/dom/NodeTraversal.h" #include "core/dom/NodeWithIndex.h" #include "core/dom/PostAttachCallbacks.h" #include "core/dom/ProcessingInstruction.h" #include "core/dom/RequestAnimationFrameCallback.h" #include "core/dom/ScriptRunner.h" #include "core/dom/ScriptedAnimationController.h" #include "core/dom/SelectorQuery.h" #include "core/dom/StyleEngine.h" #include "core/dom/TouchList.h" #include "core/dom/TransformSource.h" #include "core/dom/TreeWalker.h" #include "core/dom/VisitedLinkState.h" #include "core/dom/custom/CustomElementRegistrationContext.h" #include "core/dom/shadow/ElementShadow.h" #include "core/dom/shadow/ShadowRoot.h" #include "core/editing/Editor.h" #include "core/editing/FrameSelection.h" #include "core/editing/SpellChecker.h" #include "core/events/BeforeUnloadEvent.h" #include "core/events/Event.h" #include "core/events/EventFactory.h" #include "core/events/EventListener.h" #include "core/events/HashChangeEvent.h" #include "core/events/PageTransitionEvent.h" #include "core/events/ScopedEventQueue.h" #include "core/events/ThreadLocalEventNames.h" #include "core/fetch/ResourceFetcher.h" #include "core/fetch/TextResourceDecoder.h" #include "core/frame/ContentSecurityPolicy.h" #include "core/frame/DOMSecurityPolicy.h" #include "core/frame/DOMWindow.h" #include "core/frame/Frame.h" #include "core/frame/FrameView.h" #include "core/frame/History.h" #include "core/frame/animation/AnimationController.h" #include "core/html/HTMLAllCollection.h" #include "core/html/HTMLAnchorElement.h" #include "core/html/HTMLCanvasElement.h" #include "core/html/HTMLCollection.h" #include "core/html/HTMLDialogElement.h" #include "core/html/HTMLDocument.h" #include "core/html/HTMLFrameOwnerElement.h" #include "core/html/HTMLHeadElement.h" #include "core/html/HTMLHtmlElement.h" #include "core/html/HTMLIFrameElement.h" #include "core/html/HTMLImport.h" #include "core/html/HTMLInputElement.h" #include "core/html/HTMLLinkElement.h" #include "core/html/HTMLNameCollection.h" #include "core/html/HTMLScriptElement.h" #include "core/html/HTMLStyleElement.h" #include "core/html/HTMLTitleElement.h" #include "core/html/PluginDocument.h" #include "core/html/forms/FormController.h" #include "core/html/parser/HTMLDocumentParser.h" #include "core/html/parser/HTMLParserIdioms.h" #include "core/html/parser/NestingLevelIncrementer.h" #include "core/inspector/InspectorCounters.h" #include "core/inspector/InspectorInstrumentation.h" #include "core/inspector/ScriptCallStack.h" #include "core/loader/CookieJar.h" #include "core/loader/DocumentLoader.h" #include "core/loader/FrameLoader.h" #include "core/loader/FrameLoaderClient.h" #include "core/loader/ImageLoader.h" #include "core/loader/appcache/ApplicationCacheHost.h" #include "core/page/Chrome.h" #include "core/page/ChromeClient.h" #include "core/page/EventHandler.h" #include "core/page/FrameTree.h" #include "core/page/MouseEventWithHitTestResults.h" #include "core/page/Page.h" #include "core/page/PageConsole.h" #include "core/page/PointerLockController.h" #include "core/page/Settings.h" #include "core/page/scrolling/ScrollingCoordinator.h" #include "core/rendering/FastTextAutosizer.h" #include "core/rendering/HitTestResult.h" #include "core/rendering/RenderView.h" #include "core/rendering/RenderWidget.h" #include "core/rendering/TextAutosizer.h" #include "core/svg/SVGDocumentExtensions.h" #include "core/svg/SVGFontFaceElement.h" #include "core/svg/SVGStyleElement.h" #include "core/xml/XSLTProcessor.h" #include "core/xml/parser/XMLDocumentParser.h" #include "platform/DateComponents.h" #include "platform/Language.h" #include "platform/TraceEvent.h" #include "platform/network/HTTPParsers.h" #include "platform/scroll/ScrollbarTheme.h" #include "platform/text/PlatformLocale.h" #include "platform/text/SegmentedString.h" #include "platform/weborigin/OriginAccessEntry.h" #include "platform/weborigin/SchemeRegistry.h" #include "platform/weborigin/SecurityOrigin.h" #include "wtf/CurrentTime.h" #include "wtf/HashFunctions.h" #include "wtf/MainThread.h" #include "wtf/StdLibExtras.h" #include "wtf/TemporaryChange.h" #include "wtf/text/StringBuffer.h" #include "wtf/text/TextEncodingRegistry.h" using namespace std; using namespace WTF; using namespace Unicode; namespace WebCore { using namespace HTMLNames; static const unsigned cMaxWriteRecursionDepth = 21; // 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. :) static const int cLayoutScheduleThreshold = 250; // 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 = Letter_Lowercase | Letter_Uppercase | Letter_Other | Letter_Titlecase | Number_Letter; if (!(Unicode::category(c) & nameStartMask)) return false; // rule (c) above if (c >= 0xF900 && c < 0xFFFE) return false; // rule (d) above DecompositionType decompType = decompositionType(c); if (decompType == DecompositionFont || decompType == DecompositionCompat) 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 = Mark_NonSpacing | Mark_Enclosing | Mark_SpacingCombining | Letter_Modifier | Number_DecimalDigit; if (!(Unicode::category(c) & otherNamePartMask)) return false; // rule (c) above if (c >= 0xF900 && c < 0xFFFE) return false; // rule (d) above DecompositionType decompType = decompositionType(c); if (decompType == DecompositionFont || decompType == DecompositionCompat) return false; return true; } static bool shouldInheritSecurityOriginFromOwner(const KURL& url) { // http://www.whatwg.org/specs/web-apps/current-work/#origin-0 // // If a Document has the address "about:blank" // The origin of the Document is the origin it was assigned when its browsing context was created. // // Note: We generalize this to all "blank" URLs and invalid URLs because we // treat all of these URLs as about:blank. // return url.isEmpty() || url.isBlankURL(); } static Widget* widgetForElement(const Element& focusedElement) { RenderObject* renderer = focusedElement.renderer(); if (!renderer || !renderer->isWidget()) return 0; return toRenderWidget(renderer)->widget(); } static bool acceptsEditingFocus(const Element& element) { ASSERT(element.rendererIsEditable()); return element.document().frame() && element.rootEditableElement(); } static bool canAccessAncestor(const SecurityOrigin& activeSecurityOrigin, Frame* targetFrame) { // targetFrame can be 0 when we're trying to navigate a top-level frame // that has a 0 opener. if (!targetFrame) return false; const bool isLocalActiveOrigin = activeSecurityOrigin.isLocal(); for (Frame* ancestorFrame = targetFrame; ancestorFrame; ancestorFrame = ancestorFrame->tree().parent()) { Document* ancestorDocument = ancestorFrame->document(); // FIXME: Should be an ASSERT? Frames should alway have documents. if (!ancestorDocument) return true; const SecurityOrigin* ancestorSecurityOrigin = ancestorDocument->securityOrigin(); if (activeSecurityOrigin.canAccess(ancestorSecurityOrigin)) return true; // Allow file URL descendant navigation even when allowFileAccessFromFileURLs is false. // FIXME: It's a bit strange to special-case local origins here. Should we be doing // something more general instead? if (isLocalActiveOrigin && ancestorSecurityOrigin->isLocal()) return true; } return false; } static void printNavigationErrorMessage(const Frame& frame, const KURL& activeURL, const char* reason) { String message = "Unsafe JavaScript attempt to initiate navigation for frame with URL '" + frame.document()->url().string() + "' from frame with URL '" + activeURL.string() + "'. " + reason + "\n"; // FIXME: should we print to the console of the document performing the navigation instead? frame.domWindow()->printErrorMessage(message); } uint64_t Document::s_globalTreeVersion = 0; // This class should be passed only to Document::postTask. class CheckFocusedElementTask FINAL : public ExecutionContextTask { public: static PassOwnPtr create() { return adoptPtr(new CheckFocusedElementTask()); } virtual ~CheckFocusedElementTask() { } private: CheckFocusedElementTask() { } virtual void performTask(ExecutionContext* context) OVERRIDE { ASSERT(context->isDocument()); Document* document = toDocument(context); document->didRunCheckFocusedElementTask(); Element* element = document->focusedElement(); if (!element) return; if (document->childNeedsStyleRecalc()) { document->setNeedsFocusedElementCheck(); return; } if (element->renderer() && element->renderer()->needsLayout()) return; if (!element->isFocusable()) document->setFocusedElement(0); } }; Document::Document(const DocumentInit& initializer, DocumentClassFlags documentClasses) : ContainerNode(0, CreateDocument) , TreeScope(this) , m_hasNodesWithPlaceholderStyle(false) , m_needsNotifyRemoveAllPendingStylesheet(false) , m_evaluateMediaQueriesOnStyleRecalc(false) , m_pendingSheetLayout(NoLayoutWithPendingSheets) , m_frame(initializer.frame()) , m_domWindow(m_frame ? m_frame->domWindow() : 0) , m_import(initializer.import()) , m_activeParserCount(0) , m_contextFeatures(ContextFeatures::defaultSwitch()) , m_wellFormed(false) , m_printing(false) , m_paginatedForScreen(false) , m_compatibilityMode(NoQuirksMode) , m_compatibilityModeLocked(false) , m_didPostCheckFocusedElementTask(false) , m_domTreeVersion(++s_globalTreeVersion) , m_listenerTypes(0) , m_mutationObserverTypes(0) , m_visitedLinkState(VisitedLinkState::create(*this)) , m_visuallyOrdered(false) , m_readyState(Complete) , m_bParsing(false) , m_styleRecalcTimer(this, &Document::styleRecalcTimerFired) , m_inStyleRecalc(false) , m_gotoAnchorNeededAfterStylesheetsLoad(false) , m_containsValidityStyleRules(false) , m_updateFocusAppearanceRestoresSelection(false) , m_containsPlugins(false) , m_ignoreDestructiveWriteCount(0) , m_titleSetExplicitly(false) , m_markers(adoptPtr(new DocumentMarkerController)) , m_updateFocusAppearanceTimer(this, &Document::updateFocusAppearanceTimerFired) , m_cssTarget(0) , m_loadEventProgress(LoadEventNotRun) , m_startTime(currentTime()) , m_overMinimumLayoutThreshold(false) , m_scriptRunner(ScriptRunner::create(this)) , m_xmlVersion("1.0") , m_xmlStandalone(StandaloneUnspecified) , m_hasXMLDeclaration(0) , m_designMode(inherit) , m_hasAnnotatedRegions(false) , m_annotatedRegionsDirty(false) , m_useSecureKeyboardEntryWhenActive(false) , m_documentClasses(documentClasses) , m_isViewSource(false) , m_sawElementsInKnownNamespaces(false) , m_isSrcdocDocument(false) , m_isMobileDocument(false) , m_mayDisplaySeamlesslyWithParent(false) , m_renderView(0) , m_weakFactory(this) , m_contextDocument(initializer.contextDocument()) , m_idAttributeName(idAttr) , m_hasFullscreenElementStack(false) , m_loadEventDelayCount(0) , m_loadEventDelayTimer(this, &Document::loadEventDelayTimerFired) , m_referrerPolicy(ReferrerPolicyDefault) , m_directionSetOnDocumentElement(false) , m_writingModeSetOnDocumentElement(false) , m_writeRecursionIsTooDeep(false) , m_writeRecursionDepth(0) , m_lastHandledUserGestureTimestamp(0) , m_taskRunner(MainThreadTaskRunner::create(this)) , m_registrationContext(initializer.registrationContext(this)) , m_sharedObjectPoolClearTimer(this, &Document::sharedObjectPoolClearTimerFired) #ifndef NDEBUG , m_didDispatchViewportPropertiesChanged(false) #endif , m_animationClock(AnimationClock::create()) , m_timeline(DocumentTimeline::create(this)) , m_transitionTimeline(TransitionTimeline::create(this)) , m_templateDocumentHost(0) , m_didAssociateFormControlsTimer(this, &Document::didAssociateFormControlsTimerFired) { setClient(this); ScriptWrappable::init(this); if (m_frame) { provideContextFeaturesToDocumentFrom(this, m_frame->page()); m_fetcher = m_frame->loader().activeDocumentLoader()->fetcher(); } if (!m_fetcher) m_fetcher = ResourceFetcher::create(0); m_fetcher->setDocument(this); // We depend on the url getting immediately set in subframes, but we // also depend on the url NOT getting immediately set in opened windows. // See fast/dom/early-frame-url.html // and fast/dom/location-new-window-no-crash.html, respectively. // FIXME: Can/should we unify this behavior? if (initializer.shouldSetURL()) setURL(initializer.url()); initSecurityContext(initializer); initDNSPrefetch(); for (unsigned i = 0; i < WTF_ARRAY_LENGTH(m_nodeListCounts); i++) m_nodeListCounts[i] = 0; InspectorCounters::incrementCounter(InspectorCounters::DocumentCounter); m_lifecyle.advanceTo(DocumentLifecycle::Inactive); // Since CSSFontSelector requires Document::m_fetcher and StyleEngine owns // CSSFontSelector, need to initialize m_styleEngine after initializing // m_fetcher. m_styleEngine = StyleEngine::create(*this); } Document::~Document() { ASSERT(!renderView()); ASSERT(m_ranges.isEmpty()); ASSERT(!m_parentTreeScope); ASSERT(!hasGuardRefCount()); if (m_templateDocument) m_templateDocument->setTemplateDocumentHost(0); // balanced in templateDocument(). if (Document* ownerDocument = this->ownerDocument()) ownerDocument->didRemoveEventTargetNode(this); m_scriptRunner.clear(); removeAllEventListeners(); // Currently we believe that Document can never outlive the parser. // Although the Document may be replaced synchronously, DocumentParsers // generally keep at least one reference to an Element which would in turn // has a reference to the Document. If you hit this ASSERT, then that // assumption is wrong. DocumentParser::detach() should ensure that even // if the DocumentParser outlives the Document it won't cause badness. ASSERT(!m_parser || m_parser->refCount() == 1); detachParser(); if (this == topDocument()) clearAXObjectCache(); if (m_styleSheetList) m_styleSheetList->detachFromDocument(); if (m_import) { m_import->wasDetachedFromDocument(); m_import = 0; } m_styleEngine.clear(); // We need to destory CSSFontSelector before destroying m_fetcher. if (m_elemSheet) m_elemSheet->clearOwnerNode(); // It's possible for multiple Documents to end up referencing the same ResourceFetcher (e.g., SVGImages // load the initial empty document and the SVGDocument with the same DocumentLoader). if (m_fetcher->document() == this) m_fetcher->setDocument(0); m_fetcher.clear(); // We must call clearRareData() here since a Document class inherits TreeScope // as well as Node. See a comment on TreeScope.h for the reason. if (hasRareData()) clearRareData(); ASSERT(!m_listsInvalidatedAtDocument.size()); for (unsigned i = 0; i < WTF_ARRAY_LENGTH(m_nodeListCounts); i++) ASSERT(!m_nodeListCounts[i]); clearDocumentScope(); setClient(0); InspectorCounters::decrementCounter(InspectorCounters::DocumentCounter); } void Document::dispose() { ASSERT_WITH_SECURITY_IMPLICATION(!m_deletionHasBegun); // 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_focusedElement = 0; m_hoverNode = 0; m_activeElement = 0; m_titleElement = 0; m_documentElement = 0; m_contextFeatures = ContextFeatures::defaultSwitch(); m_userActionElements.documentDidRemoveLastRef(); m_associatedFormControls.clear(); detachParser(); m_registrationContext.clear(); if (m_import) { m_import->wasDetachedFromDocument(); m_import = 0; } // removeDetachedChildren() doesn't always unregister IDs, // so tear down scope information upfront to avoid having stale references in the map. destroyTreeScopeData(); removeDetachedChildren(); // removeDetachedChildren() can access FormController. m_formController.clear(); m_markers->clear(); m_cssCanvasElements.clear(); // FIXME: consider using ActiveDOMObject. if (m_scriptedAnimationController) m_scriptedAnimationController->clearDocumentPointer(); m_scriptedAnimationController.clear(); if (svgExtensions()) accessSVGExtensions()->pauseAnimations(); m_lifecyle.advanceTo(DocumentLifecycle::Disposed); lifecycleNotifier().notifyDocumentWasDisposed(); } SelectorQueryCache& Document::selectorQueryCache() { if (!m_selectorQueryCache) m_selectorQueryCache = adoptPtr(new SelectorQueryCache()); return *m_selectorQueryCache; } MediaQueryMatcher& Document::mediaQueryMatcher() { if (!m_mediaQueryMatcher) m_mediaQueryMatcher = MediaQueryMatcher::create(this); return *m_mediaQueryMatcher; } void Document::mediaQueryAffectingValueChanged() { styleEngine()->clearMediaQueryRuleSetStyleSheets(); } void Document::setCompatibilityMode(CompatibilityMode mode) { if (m_compatibilityModeLocked || mode == m_compatibilityMode) return; bool wasInQuirksMode = inQuirksMode(); m_compatibilityMode = mode; selectorQueryCache().invalidate(); if (inQuirksMode() != wasInQuirksMode) { // All injected stylesheets have to reparse using the different mode. m_styleEngine->invalidateInjectedStyleSheetCache(); } } String Document::compatMode() const { return inQuirksMode() ? "BackCompat" : "CSS1Compat"; } void Document::setDoctype(PassRefPtr docType) { // This should never be called more than once. ASSERT(!m_docType || !docType); m_docType = docType; if (m_docType) { this->adoptIfNeeded(*m_docType); if (m_docType->publicId().startsWith("-//wapforum//dtd xhtml mobile 1.", /* caseSensitive */ false)) m_isMobileDocument = true; } // Doctype affects the interpretation of the stylesheets. clearStyleResolver(); } DOMImplementation* Document::implementation() { if (!m_implementation) m_implementation = DOMImplementation::create(*this); return m_implementation.get(); } bool Document::hasManifest() const { return documentElement() && isHTMLHtmlElement(documentElement()) && documentElement()->hasAttribute(manifestAttr); } Location* Document::location() const { if (!frame()) return 0; return domWindow()->location(); } void Document::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta) { ContainerNode::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta); Element* newDocumentElement = ElementTraversal::firstWithin(*this); if (newDocumentElement == m_documentElement) return; m_documentElement = newDocumentElement; // The root style used for media query matching depends on the document element. clearStyleResolver(); } PassRefPtr Document::createElement(const AtomicString& name, ExceptionState& exceptionState) { if (!isValidName(name)) { exceptionState.throwUninformativeAndGenericDOMException(InvalidCharacterError); return 0; } if (isXHTMLDocument() || isHTMLDocument()) return HTMLElementFactory::createHTMLElement(isHTMLDocument() ? name.lower() : name, document(), 0, false); return createElement(QualifiedName(nullAtom, name, nullAtom), false); } PassRefPtr Document::createElement(const AtomicString& localName, const AtomicString& typeExtension, ExceptionState& exceptionState) { if (!isValidName(localName)) { exceptionState.throwUninformativeAndGenericDOMException(InvalidCharacterError); return 0; } RefPtr element; if (RuntimeEnabledFeatures::customElementsEnabled() && CustomElement::isValidName(localName) && registrationContext()) element = registrationContext()->createCustomTagElement(*this, QualifiedName(nullAtom, localName, xhtmlNamespaceURI)); else element = createElement(localName, exceptionState); if (RuntimeEnabledFeatures::customElementsEnabled() && !typeExtension.isNull() && !typeExtension.isEmpty()) CustomElementRegistrationContext::setIsAttributeAndTypeExtension(element.get(), typeExtension); return element; } PassRefPtr Document::createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, ExceptionState& exceptionState) { AtomicString prefix, localName; if (!parseQualifiedName(qualifiedName, prefix, localName, exceptionState)) return 0; QualifiedName qName(prefix, localName, namespaceURI); if (!hasValidNamespaceForElements(qName)) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return 0; } RefPtr element; if (CustomElement::isValidName(qName.localName()) && registrationContext()) element = registrationContext()->createCustomTagElement(*this, qName); else element = createElementNS(namespaceURI, qualifiedName, exceptionState); if (!typeExtension.isNull() && !typeExtension.isEmpty()) CustomElementRegistrationContext::setIsAttributeAndTypeExtension(element.get(), typeExtension); return element; } ScriptValue Document::registerElement(WebCore::ScriptState* state, const AtomicString& name, ExceptionState& exceptionState) { return registerElement(state, name, Dictionary(), exceptionState); } ScriptValue Document::registerElement(WebCore::ScriptState* state, const AtomicString& name, const Dictionary& options, ExceptionState& exceptionState, CustomElement::NameSet validNames) { if (!registrationContext()) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return ScriptValue(); } CustomElementConstructorBuilder constructorBuilder(state, &options); registrationContext()->registerElement(this, &constructorBuilder, name, validNames, exceptionState); return constructorBuilder.bindingsReturnValue(); } void Document::setImport(HTMLImport* import) { ASSERT(!m_import || !import); m_import = import; } void Document::didLoadAllImports() { executeScriptsWaitingForResourcesIfNeeded(); } bool Document::haveImportsLoaded() const { return !m_import || !m_import->isBlocked(); } PassRefPtr Document::createDocumentFragment() { return DocumentFragment::create(document()); } PassRefPtr Document::createTextNode(const String& data) { return Text::create(*this, data); } PassRefPtr Document::createComment(const String& data) { return Comment::create(*this, data); } PassRefPtr Document::createCDATASection(const String& data, ExceptionState& exceptionState) { if (isHTMLDocument()) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } if (data.contains("]]>")) { exceptionState.throwDOMException(InvalidCharacterError, "String cannot contain ']]>' since that is the end delimiter of a CData section."); return 0; } return CDATASection::create(*this, data); } PassRefPtr Document::createProcessingInstruction(const String& target, const String& data, ExceptionState& exceptionState) { if (!isValidName(target)) { exceptionState.throwDOMException(InvalidCharacterError, "The target provided ('" + target + "') is not a valid name."); return 0; } if (data.contains("?>")) { exceptionState.throwDOMException(InvalidCharacterError, "The data provided ('" + data + "') contains '?>'."); return 0; } return ProcessingInstruction::create(*this, target, data); } PassRefPtr Document::createEditingTextNode(const String& text) { return Text::createEditingText(*this, text); } PassRefPtr Document::createCSSStyleDeclaration() { return MutableStylePropertySet::create()->ensureCSSStyleDeclaration(); } PassRefPtr Document::importNode(Node* importedNode, bool deep, ExceptionState& exceptionState) { if (!importedNode) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } switch (importedNode->nodeType()) { case TEXT_NODE: return createTextNode(importedNode->nodeValue()); case CDATA_SECTION_NODE: return createCDATASection(importedNode->nodeValue(), exceptionState); case PROCESSING_INSTRUCTION_NODE: return createProcessingInstruction(importedNode->nodeName(), importedNode->nodeValue(), exceptionState); case COMMENT_NODE: return createComment(importedNode->nodeValue()); case ELEMENT_NODE: { Element* oldElement = toElement(importedNode); // FIXME: The following check might be unnecessary. Is it possible that // oldElement has mismatched prefix/namespace? if (!hasValidNamespaceForElements(oldElement->tagQName())) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return 0; } RefPtr newElement = createElement(oldElement->tagQName(), false); newElement->cloneDataFromElement(*oldElement); if (deep) { for (Node* oldChild = oldElement->firstChild(); oldChild; oldChild = oldChild->nextSibling()) { RefPtr newChild = importNode(oldChild, true, exceptionState); if (exceptionState.hadException()) return 0; newElement->appendChild(newChild.release(), exceptionState); if (exceptionState.hadException()) return 0; } } return newElement.release(); } case ATTRIBUTE_NODE: return Attr::create(*this, QualifiedName(nullAtom, toAttr(importedNode)->name(), nullAtom), toAttr(importedNode)->value()); case DOCUMENT_FRAGMENT_NODE: { if (importedNode->isShadowRoot()) { // ShadowRoot nodes should not be explicitly importable. // Either they are imported along with their host node, or created implicitly. break; } DocumentFragment* oldFragment = toDocumentFragment(importedNode); RefPtr newFragment = createDocumentFragment(); if (deep) { for (Node* oldChild = oldFragment->firstChild(); oldChild; oldChild = oldChild->nextSibling()) { RefPtr newChild = importNode(oldChild, true, exceptionState); if (exceptionState.hadException()) return 0; newFragment->appendChild(newChild.release(), exceptionState); if (exceptionState.hadException()) return 0; } } return newFragment.release(); } case ENTITY_NODE: case NOTATION_NODE: // FIXME: It should be possible to import these node types, however in DOM3 the DocumentType is readonly, so there isn't much sense in doing that. // Ability to add these imported nodes to a DocumentType will be considered for addition to a future release of the DOM. case DOCUMENT_NODE: case DOCUMENT_TYPE_NODE: case XPATH_NAMESPACE_NODE: break; } exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } PassRefPtr Document::adoptNode(PassRefPtr source, ExceptionState& exceptionState) { if (!source) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } EventQueueScope scope; switch (source->nodeType()) { case ENTITY_NODE: case NOTATION_NODE: case DOCUMENT_NODE: case DOCUMENT_TYPE_NODE: case XPATH_NAMESPACE_NODE: exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; case ATTRIBUTE_NODE: { Attr* attr = toAttr(source.get()); if (attr->ownerElement()) attr->ownerElement()->removeAttributeNode(attr, exceptionState); break; } default: if (source->isShadowRoot()) { // ShadowRoot cannot disconnect itself from the host node. exceptionState.throwUninformativeAndGenericDOMException(HierarchyRequestError); return 0; } if (source->isFrameOwnerElement()) { HTMLFrameOwnerElement* frameOwnerElement = toHTMLFrameOwnerElement(source.get()); if (frame() && frame()->tree().isDescendantOf(frameOwnerElement->contentFrame())) { exceptionState.throwUninformativeAndGenericDOMException(HierarchyRequestError); return 0; } } if (source->parentNode()) { source->parentNode()->removeChild(source.get(), exceptionState); if (exceptionState.hadException()) return 0; } } this->adoptIfNeeded(*source); return source; } bool Document::hasValidNamespaceForElements(const QualifiedName& qName) { // These checks are from DOM Core Level 2, createElementNS // http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-DocCrElNS if (!qName.prefix().isEmpty() && qName.namespaceURI().isNull()) // createElementNS(null, "html:div") return false; if (qName.prefix() == xmlAtom && qName.namespaceURI() != XMLNames::xmlNamespaceURI) // createElementNS("http://www.example.com", "xml:lang") return false; // Required by DOM Level 3 Core and unspecified by DOM Level 2 Core: // http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-DocCrElNS // createElementNS("http://www.w3.org/2000/xmlns/", "foo:bar"), createElementNS(null, "xmlns:bar") if ((qName.prefix() == xmlnsAtom && qName.namespaceURI() != XMLNSNames::xmlnsNamespaceURI) || (qName.prefix() != xmlnsAtom && qName.namespaceURI() == XMLNSNames::xmlnsNamespaceURI)) return false; return true; } bool Document::hasValidNamespaceForAttributes(const QualifiedName& qName) { // Spec: DOM Level 2 Core: http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-ElSetAttrNS if (qName.prefix().isEmpty() && qName.localName() == xmlnsAtom) { // Note: The case of an "xmlns" qualified name with a namespace of // xmlnsNamespaceURI is specifically allowed (See ). return qName.namespaceURI() == XMLNSNames::xmlnsNamespaceURI; } return hasValidNamespaceForElements(qName); } // FIXME: This should really be in a possible ElementFactory class PassRefPtr Document::createElement(const QualifiedName& qName, bool createdByParser) { RefPtr e; // FIXME: Use registered namespaces and look up in a hash to find the right factory. if (qName.namespaceURI() == xhtmlNamespaceURI) e = HTMLElementFactory::createHTMLElement(qName.localName(), document(), 0, createdByParser); else if (qName.namespaceURI() == SVGNames::svgNamespaceURI) e = SVGElementFactory::createSVGElement(qName.localName(), document(), createdByParser); if (e) m_sawElementsInKnownNamespaces = true; else e = Element::create(qName, &document()); if (e->prefix() != qName.prefix()) e->setTagNameForCreateElementNS(qName); ASSERT(qName == e->tagQName()); return e.release(); } bool Document::regionBasedColumnsEnabled() const { return settings() && settings()->regionBasedColumnsEnabled(); } PassRefPtr Document::webkitGetNamedFlows() { if (!RuntimeEnabledFeatures::cssRegionsEnabled() || !renderView()) return 0; updateStyleIfNeeded(); return namedFlows()->createCSSOMSnapshot(); } NamedFlowCollection* Document::namedFlows() { if (!m_namedFlows) m_namedFlows = NamedFlowCollection::create(this); return m_namedFlows.get(); } PassRefPtr Document::createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState) { AtomicString prefix, localName; if (!parseQualifiedName(qualifiedName, prefix, localName, exceptionState)) return 0; QualifiedName qName(prefix, localName, namespaceURI); if (!hasValidNamespaceForElements(qName)) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return 0; } return createElement(qName, false); } String Document::readyState() const { DEFINE_STATIC_LOCAL(const String, loading, ("loading")); DEFINE_STATIC_LOCAL(const String, interactive, ("interactive")); DEFINE_STATIC_LOCAL(const String, complete, ("complete")); switch (m_readyState) { case Loading: return loading; case Interactive: return interactive; case Complete: return complete; } ASSERT_NOT_REACHED(); return String(); } void Document::setReadyState(ReadyState readyState) { if (readyState == m_readyState) return; switch (readyState) { case Loading: if (!m_documentTiming.domLoading) { m_documentTiming.domLoading = monotonicallyIncreasingTime(); if (RuntimeEnabledFeatures::webAnimationsCSSEnabled()) m_timeline->setZeroTime(m_documentTiming.domLoading); } break; case Interactive: if (!m_documentTiming.domInteractive) m_documentTiming.domInteractive = monotonicallyIncreasingTime(); break; case Complete: if (!m_documentTiming.domComplete) m_documentTiming.domComplete = monotonicallyIncreasingTime(); break; } m_readyState = readyState; dispatchEvent(Event::create(EventTypeNames::readystatechange)); } bool Document::isLoadCompleted() { return m_readyState == Complete; } AtomicString Document::encodingName() const { // TextEncoding::name() returns a char*, no need to allocate a new // String for it each time. // FIXME: We should fix TextEncoding to speak AtomicString anyway. return AtomicString(encoding().name()); } String Document::defaultCharset() const { if (Settings* settings = this->settings()) return settings->defaultTextEncodingName(); return String(); } void Document::setCharset(const String& charset) { if (DocumentLoader* documentLoader = loader()) documentLoader->setUserChosenEncoding(charset); WTF::TextEncoding encoding(charset); // In case the encoding didn't exist, we keep the old one (helps some sites specifying invalid encodings). if (!encoding.isValid()) return; DocumentEncodingData newEncodingData = m_encodingData; newEncodingData.encoding = encoding; setEncodingData(newEncodingData); } void Document::setContentLanguage(const AtomicString& language) { if (m_contentLanguage == language) return; m_contentLanguage = language; // Document's style depends on the content language. setNeedsStyleRecalc(); } void Document::setXMLVersion(const String& version, ExceptionState& exceptionState) { if (!implementation()->hasFeature("XML", String())) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return; } if (!XMLDocumentParser::supportsXMLVersion(version)) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return; } m_xmlVersion = version; } void Document::setXMLStandalone(bool standalone, ExceptionState& exceptionState) { if (!implementation()->hasFeature("XML", String())) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return; } m_xmlStandalone = standalone ? Standalone : NotStandalone; } KURL Document::baseURI() const { return m_baseURL; } void Document::setContent(const String& content) { open(); // FIXME: This should probably use insert(), but that's (intentionally) // not implemented for the XML parser as it's normally synonymous with // document.write(). append() will end up yielding, but close() will // pump the tokenizer syncrhonously and finish the parse. m_parser->pinToMainThread(); m_parser->append(content.impl()); close(); } String Document::suggestedMIMEType() const { if (isXHTMLDocument()) return "application/xhtml+xml"; if (isSVGDocument()) return "image/svg+xml"; if (xmlStandalone()) return "text/xml"; if (isHTMLDocument()) return "text/html"; if (DocumentLoader* documentLoader = loader()) return documentLoader->responseMIMEType(); return String(); } Element* Document::elementFromPoint(int x, int y) const { if (!renderView()) return 0; return TreeScope::elementFromPoint(x, y); } PassRefPtr Document::caretRangeFromPoint(int x, int y) { if (!renderView()) return 0; LayoutPoint localPoint; RenderObject* renderer = rendererFromPoint(this, x, y, &localPoint); if (!renderer) return 0; Node* node = renderer->node(); Node* shadowAncestorNode = ancestorInThisScope(node); if (shadowAncestorNode != node) { unsigned offset = shadowAncestorNode->nodeIndex(); ContainerNode* container = shadowAncestorNode->parentNode(); return Range::create(*this, container, offset, container, offset); } PositionWithAffinity positionWithAffinity = renderer->positionForPoint(localPoint); if (positionWithAffinity.position().isNull()) return 0; Position rangeCompliantPosition = positionWithAffinity.position().parentAnchoredEquivalent(); return Range::create(*this, rangeCompliantPosition, rangeCompliantPosition); } /* * Performs three operations: * 1. Convert control characters to spaces * 2. Trim leading and trailing spaces * 3. Collapse internal whitespace. */ template static inline String canonicalizedTitle(Document* document, const String& title) { const CharacterType* characters = title.getCharacters(); unsigned length = title.length(); unsigned i; StringBuffer buffer(length); unsigned builderIndex = 0; // Skip leading spaces and leading characters that would convert to spaces for (i = 0; i < length; ++i) { CharacterType c = characters[i]; if (!(c <= 0x20 || c == 0x7F)) break; } if (i == length) return String(); // Replace control characters with spaces, and backslashes with currency symbols, and collapse whitespace. bool previousCharWasWS = false; for (; i < length; ++i) { CharacterType c = characters[i]; if (c <= 0x20 || c == 0x7F || (WTF::Unicode::category(c) & (WTF::Unicode::Separator_Line | WTF::Unicode::Separator_Paragraph))) { if (previousCharWasWS) continue; buffer[builderIndex++] = ' '; previousCharWasWS = true; } else { buffer[builderIndex++] = c; previousCharWasWS = false; } } // Strip trailing spaces while (builderIndex > 0) { --builderIndex; if (buffer[builderIndex] != ' ') break; } if (!builderIndex && buffer[builderIndex] == ' ') return String(); buffer.shrink(builderIndex + 1); return String::adopt(buffer); } void Document::updateTitle(const String& title) { if (m_rawTitle == title) return; m_rawTitle = title; String oldTitle = m_title; if (m_rawTitle.isEmpty()) m_title = String(); else if (m_rawTitle.is8Bit()) m_title = canonicalizedTitle(this, m_rawTitle); else m_title = canonicalizedTitle(this, m_rawTitle); if (!m_frame || oldTitle == m_title) return; m_frame->loader().client()->dispatchDidReceiveTitle(m_title); } void Document::setTitle(const String& title) { // Title set by JavaScript -- overrides any title elements. m_titleSetExplicitly = true; if (!isHTMLDocument() && !isXHTMLDocument()) m_titleElement = 0; else if (!m_titleElement) { if (HTMLElement* headElement = head()) { m_titleElement = createElement(titleTag, false); headElement->appendChild(m_titleElement); } } updateTitle(title); if (m_titleElement && isHTMLTitleElement(m_titleElement.get())) toHTMLTitleElement(m_titleElement)->setText(title); } void Document::setTitleElement(const String& title, Element* titleElement) { if (titleElement != m_titleElement) { if (m_titleElement || m_titleSetExplicitly) // Only allow the first title element to change the title -- others have no effect. return; m_titleElement = titleElement; } updateTitle(title); } void Document::removeTitle(Element* titleElement) { if (m_titleElement != titleElement) return; m_titleElement = 0; m_titleSetExplicitly = false; // FIXME: This is broken for SVG. // Update title based on first title element in the head, if one exists. if (HTMLElement* headElement = head()) { for (Element* element = headElement->firstElementChild(); element; element = element->nextElementSibling()) { if (!isHTMLTitleElement(element)) continue; HTMLTitleElement* title = toHTMLTitleElement(element); setTitleElement(title->text(), title); break; } } if (!m_titleElement) updateTitle(String()); } PageVisibilityState Document::pageVisibilityState() const { // The visibility of the document is inherited from the visibility of the // page. If there is no page associated with the document, we will assume // that the page is hidden, as specified by the spec: // http://dvcs.w3.org/hg/webperf/raw-file/tip/specs/PageVisibility/Overview.html#dom-document-hidden if (!m_frame || !m_frame->page()) return PageVisibilityStateHidden; return m_frame->page()->visibilityState(); } String Document::visibilityState() const { return pageVisibilityStateString(pageVisibilityState()); } bool Document::hidden() const { return pageVisibilityState() != PageVisibilityStateVisible; } void Document::dispatchVisibilityStateChangeEvent() { dispatchEvent(Event::create(EventTypeNames::visibilitychange)); // Also send out the deprecated version until it can be removed. dispatchEvent(Event::create(EventTypeNames::webkitvisibilitychange)); } DOMSecurityPolicy* Document::securityPolicy() { if (!m_domSecurityPolicy) m_domSecurityPolicy = DOMSecurityPolicy::create(this); return m_domSecurityPolicy.get(); } String Document::nodeName() const { return "#document"; } Node::NodeType Document::nodeType() const { return DOCUMENT_NODE; } FormController* Document::formController() { if (!m_formController) m_formController = FormController::create(); return m_formController.get(); } Vector Document::formElementsState() const { if (!m_formController) return Vector(); return m_formController->formElementsState(); } void Document::setStateForNewFormElements(const Vector& stateVector) { if (!stateVector.size() && !m_formController) return; formController()->setStateForNewFormElements(stateVector); } FrameView* Document::view() const { return m_frame ? m_frame->view() : 0; } Page* Document::page() const { return m_frame ? m_frame->page() : 0; } Settings* Document::settings() const { return m_frame ? m_frame->settings() : 0; } PassRefPtr Document::createRange() { return Range::create(*this); } PassRefPtr Document::createNodeIterator(Node* root, ExceptionState& exceptionState) { // FIXME: Probably this should be handled within the bindings layer and TypeError should be thrown. if (!root) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } return NodeIterator::create(root, NodeFilter::SHOW_ALL, PassRefPtr()); } PassRefPtr Document::createNodeIterator(Node* root, unsigned whatToShow, ExceptionState& exceptionState) { if (!root) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } // FIXME: It might be a good idea to emit a warning if |whatToShow| contains a bit that is not defined in // NodeFilter. return NodeIterator::create(root, whatToShow, PassRefPtr()); } PassRefPtr Document::createNodeIterator(Node* root, unsigned whatToShow, PassRefPtr filter, ExceptionState& exceptionState) { if (!root) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } // FIXME: Ditto. return NodeIterator::create(root, whatToShow, filter); } PassRefPtr Document::createTreeWalker(Node* root, ExceptionState& exceptionState) { if (!root) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } return TreeWalker::create(root, NodeFilter::SHOW_ALL, PassRefPtr()); } PassRefPtr Document::createTreeWalker(Node* root, unsigned whatToShow, ExceptionState& exceptionState) { if (!root) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } return TreeWalker::create(root, whatToShow, PassRefPtr()); } PassRefPtr Document::createTreeWalker(Node* root, unsigned whatToShow, PassRefPtr filter, ExceptionState& exceptionState) { if (!root) { exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } return TreeWalker::create(root, whatToShow, filter); } void Document::scheduleStyleRecalc() { if (shouldDisplaySeamlesslyWithParent()) { // When we're seamless, our parent document manages our style recalcs. ownerElement()->setNeedsStyleRecalc(); ownerElement()->document().scheduleStyleRecalc(); return; } if (m_styleRecalcTimer.isActive()) return; ASSERT(needsStyleRecalc() || childNeedsStyleRecalc() || childNeedsDistributionRecalc()); m_styleRecalcTimer.startOneShot(0); InspectorInstrumentation::didScheduleStyleRecalculation(this); } void Document::unscheduleStyleRecalc() { ASSERT(!isActive() || (!needsStyleRecalc() && !childNeedsStyleRecalc())); m_styleRecalcTimer.stop(); } bool Document::hasPendingStyleRecalc() const { return m_styleRecalcTimer.isActive() && !m_inStyleRecalc; } bool Document::hasPendingForcedStyleRecalc() const { return hasPendingStyleRecalc() && styleChangeType() >= SubtreeStyleChange; } void Document::styleRecalcTimerFired(Timer*) { updateStyleIfNeeded(); } void Document::updateDistributionIfNeeded() { if (!childNeedsDistributionRecalc()) return; TRACE_EVENT0("webkit", "Document::recalcDistribution"); recalcDistribution(); } void Document::updateDistributionForNodeIfNeeded(Node* node) { if (node->inDocument()) { updateDistributionIfNeeded(); return; } Node* root = node; while (Node* host = root->shadowHost()) root = host; while (Node* ancestor = root->parentOrShadowHostNode()) root = ancestor; if (root->childNeedsDistributionRecalc()) root->recalcDistribution(); } void Document::setStyleDependentState(RenderStyle* documentStyle) { const Pagination& pagination = view()->pagination(); if (pagination.mode != Pagination::Unpaginated) { Pagination::setStylesForPaginationMode(pagination.mode, documentStyle); documentStyle->setColumnGap(pagination.gap); if (renderView()->hasColumns()) renderView()->updateColumnInfoFromStyle(documentStyle); } // Seamless iframes want to inherit their font from their parent iframe, so early return before setting the font. if (shouldDisplaySeamlesslyWithParent()) return; FontBuilder fontBuilder; fontBuilder.initForStyleResolve(*this, documentStyle, isSVGDocument()); RefPtr selector = m_styleEngine->fontSelector(); fontBuilder.createFontForDocument(selector, documentStyle); } void Document::inheritHtmlAndBodyElementStyles(StyleRecalcChange change) { ASSERT(inStyleRecalc()); ASSERT(documentElement()); RefPtr documentElementStyle = documentElement()->renderStyle(); if (!documentElementStyle || documentElement()->needsStyleRecalc() || change == Force) documentElementStyle = ensureStyleResolver().styleForElement(documentElement()); WritingMode rootWritingMode = documentElementStyle->writingMode(); TextDirection rootDirection = documentElementStyle->direction(); HTMLElement* body = this->body(); if (body) { RefPtr bodyStyle = body->renderStyle(); if (!bodyStyle || body->needsStyleRecalc() || documentElement()->needsStyleRecalc() || change == Force) bodyStyle = ensureStyleResolver().styleForElement(body, documentElementStyle.get()); if (!writingModeSetOnDocumentElement()) rootWritingMode = bodyStyle->writingMode(); if (!directionSetOnDocumentElement()) rootDirection = bodyStyle->direction(); } RefPtr documentStyle = renderView()->style(); if (documentStyle->writingMode() != rootWritingMode || documentStyle->direction() != rootDirection) { RefPtr newStyle = RenderStyle::clone(documentStyle.get()); newStyle->setWritingMode(rootWritingMode); newStyle->setDirection(rootDirection); renderView()->setStyle(newStyle); setStyleDependentState(newStyle.get()); } if (body) { if (RenderStyle* style = body->renderStyle()) { if (style->direction() != rootDirection || style->writingMode() != rootWritingMode) body->setNeedsStyleRecalc(); } } if (RenderStyle* style = documentElement()->renderStyle()) { if (style->direction() != rootDirection || style->writingMode() != rootWritingMode) documentElement()->setNeedsStyleRecalc(); } } void Document::recalcStyle(StyleRecalcChange change) { // we should not enter style recalc while painting RELEASE_ASSERT(!view() || !view()->isPainting()); // FIXME: We should never enter here without a FrameView or with an inactive document. if (!isActive() || !view()) return; if (m_inStyleRecalc) return; TRACE_EVENT0("webkit", "Document::recalcStyle"); TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "RecalcStyle"); updateDistributionIfNeeded(); InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRecalculateStyle(this); if (m_evaluateMediaQueriesOnStyleRecalc) { m_evaluateMediaQueriesOnStyleRecalc = false; evaluateMediaQueryList(); } // FIXME: We should update style on our ancestor chain before proceeding (especially for seamless), // however doing so currently causes several tests to crash, as Frame::setDocument calls Document::attach // before setting the DOMWindow on the Frame, or the SecurityOrigin on the document. The attach, in turn // resolves style (here) and then when we resolve style on the parent chain, we may end up // re-attaching our containing iframe, which when asked HTMLFrameElementBase::isURLAllowed // hits a null-dereference due to security code always assuming the document has a SecurityOrigin. if (m_styleEngine->needsUpdateActiveStylesheetsOnStyleRecalc()) m_styleEngine->updateActiveStyleSheets(FullStyleUpdate); if (m_elemSheet && m_elemSheet->contents()->usesRemUnits()) m_styleEngine->setUsesRemUnit(true); { PostAttachCallbacks::SuspendScope suspendPostAttachCallbacks; RenderWidget::UpdateSuspendScope suspendWidgetHierarchyUpdates; FrameView::DeferredRepaintScope deferRepaints(*view()); TemporaryChange changeInStyleRecalc(m_inStyleRecalc, true); if (styleChangeType() >= SubtreeStyleChange) change = Force; // FIXME: Cannot access the ensureStyleResolver() before calling styleForDocument below because // apparently the StyleResolver's constructor has side effects. We should fix it. // See printing/setPrinting.html, printing/width-overflow.html though they only fail on // mac when accessing the resolver by what appears to be a viewport size difference. if (change == Force || (change >= Inherit && shouldDisplaySeamlesslyWithParent())) { m_hasNodesWithPlaceholderStyle = false; RefPtr documentStyle = StyleResolver::styleForDocument(*this, m_styleEngine->fontSelector()); StyleRecalcChange localChange = RenderStyle::compare(documentStyle.get(), renderView()->style()); if (localChange != NoChange) renderView()->setStyle(documentStyle.release()); } clearNeedsStyleRecalc(); // Uncomment to enable printing of statistics about style sharing and the matched property cache. // Optionally pass StyleResolver::ReportSlowStats to print numbers that require crawling the // entire DOM (where collecting them is very slow). // FIXME: Expose this as a runtime flag. // ensureStyleResolver().enableStats(/*StyleResolver::ReportSlowStats*/); if (StyleResolverStats* stats = ensureStyleResolver().stats()) stats->reset(); if (Element* documentElement = this->documentElement()) { inheritHtmlAndBodyElementStyles(change); if (shouldRecalcStyle(change, documentElement)) documentElement->recalcStyle(change); } ensureStyleResolver().printStats(); view()->updateCompositingLayersAfterStyleChange(); clearChildNeedsStyleRecalc(); unscheduleStyleRecalc(); // FIXME: SVG element can schedule a recalc in the middle of an already running one. // See StyleEngine::updateActiveStyleSheets. if (m_styleEngine->needsUpdateActiveStylesheetsOnStyleRecalc()) setNeedsStyleRecalc(); if (m_styleEngine->hasResolver()) { // Pseudo element removal and similar may only work with these flags still set. Reset them after the style recalc. StyleResolver& resolver = m_styleEngine->ensureResolver(); m_styleEngine->resetCSSFeatureFlags(resolver.ensureRuleFeatureSet()); resolver.clearStyleSharingList(); } } InspectorInstrumentation::didRecalculateStyle(cookie); // As a result of the style recalculation, the currently hovered element might have been // detached (for example, by setting display:none in the :hover style), schedule another mouseMove event // to check if any other elements ended up under the mouse pointer due to re-layout. if (hoverNode() && !hoverNode()->renderer() && frame()) frame()->eventHandler().dispatchFakeMouseMoveEventSoon(); } void Document::updateStyleIfNeeded() { ASSERT(isMainThread()); ASSERT(!view() || (!view()->isInLayout() && !view()->isPainting())); if (!needsStyleRecalc() && !childNeedsStyleRecalc() && !childNeedsDistributionRecalc()) return; AnimationUpdateBlock animationUpdateBlock(m_frame ? &m_frame->animation() : 0); recalcStyle(NoChange); DocumentAnimations::serviceAfterStyleRecalc(*this); } void Document::updateStyleForNodeIfNeeded(Node* node) { if (!hasPendingForcedStyleRecalc() && !childNeedsStyleRecalc() && !needsStyleRecalc()) return; bool needsStyleRecalc = hasPendingForcedStyleRecalc(); for (Node* ancestor = node; ancestor && !needsStyleRecalc; ancestor = ancestor->parentOrShadowHostNode()) needsStyleRecalc = ancestor->needsStyleRecalc(); if (needsStyleRecalc) updateStyleIfNeeded(); } void Document::updateLayout() { ASSERT(isMainThread()); RefPtr frameView = view(); if (frameView && frameView->isInLayout()) { // View layout should not be re-entrant. ASSERT_NOT_REACHED(); return; } if (Element* oe = ownerElement()) oe->document().updateLayout(); updateStyleIfNeeded(); // Only do a layout if changes have occurred that make it necessary. if (isActive() && frameView && renderView() && (frameView->layoutPending() || renderView()->needsLayout())) frameView->layout(); if (isActive() && frameView) frameView->partialLayout().reset(); setNeedsFocusedElementCheck(); } void Document::setNeedsFocusedElementCheck() { // FIXME: Using a Task doesn't look a good idea. if (!m_focusedElement || m_didPostCheckFocusedElementTask) return; m_taskRunner->postTask(CheckFocusedElementTask::create()); m_didPostCheckFocusedElementTask = true; } void Document::recalcStyleForLayoutIgnoringPendingStylesheets() { ASSERT(m_styleEngine->ignoringPendingStylesheets()); if (!m_styleEngine->hasPendingSheets()) return; // FIXME: We are willing to attempt to suppress painting with outdated style info only once. // Our assumption is that it would be dangerous to try to stop it a second time, after page // content has already been loaded and displayed with accurate style information. (Our // suppression involves blanking the whole page at the moment. If it were more refined, we // might be able to do something better.) It's worth noting though that this entire method // is a hack, since what we really want to do is suspend JS instead of doing a layout with // inaccurate information. HTMLElement* bodyElement = body(); if (bodyElement && !bodyElement->renderer() && m_pendingSheetLayout == NoLayoutWithPendingSheets) { m_pendingSheetLayout = DidLayoutWithPendingSheets; styleResolverChanged(RecalcStyleImmediately); } else if (m_hasNodesWithPlaceholderStyle) { // If new nodes have been added or style recalc has been done with style sheets still // pending, some nodes may not have had their real style calculated yet. Normally this // gets cleaned when style sheets arrive but here we need up-to-date style immediately. recalcStyle(Force); } } // 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(Document::RunPostLayoutTasks runPostLayoutTasks) { StyleEngine::IgnoringPendingStylesheet ignoring(m_styleEngine.get()); recalcStyleForLayoutIgnoringPendingStylesheets(); updateLayout(); if (runPostLayoutTasks == RunPostLayoutTasksSynchronously && view()) view()->flushAnyPendingPostLayoutTasks(); } void Document::partialUpdateLayoutIgnorePendingStylesheets(Node* stopLayoutAtNode) { // Non-overlay scrollbars can cause a second layout that is dependent // on a first layout. This is disabled for partial layout for now. if (!RuntimeEnabledFeatures::partialLayoutEnabled() || !ScrollbarTheme::theme()->usesOverlayScrollbars()) { updateLayoutIgnorePendingStylesheets(); return; } StyleEngine::IgnoringPendingStylesheet ignoring(m_styleEngine.get()); recalcStyleForLayoutIgnoringPendingStylesheets(); if (stopLayoutAtNode) { RenderObject* renderer = stopLayoutAtNode->renderer(); bool canPartialLayout = renderer; while (renderer) { if (!renderer->supportsPartialLayout()) { canPartialLayout = false; break; } renderer = renderer->parent(); } if (canPartialLayout && view()) view()->partialLayout().setStopAtRenderer(stopLayoutAtNode->renderer()); } updateLayout(); if (view()) view()->partialLayout().reset(); } PassRefPtr Document::styleForElementIgnoringPendingStylesheets(Element* element) { ASSERT_ARG(element, element->document() == this); StyleEngine::IgnoringPendingStylesheet ignoring(m_styleEngine.get()); return ensureStyleResolver().styleForElement(element, element->parentNode() ? element->parentNode()->computedStyle() : 0); } PassRefPtr Document::styleForPage(int pageIndex) { return ensureStyleResolver().styleForPage(pageIndex); } bool Document::isPageBoxVisible(int pageIndex) { return styleForPage(pageIndex)->visibility() != HIDDEN; // display property doesn't apply to @page. } void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) { RefPtr style = styleForPage(pageIndex); RenderView* view = renderView(); int width = pageSize.width(); int height = pageSize.height(); switch (style->pageSizeType()) { case PAGE_SIZE_AUTO: break; case PAGE_SIZE_AUTO_LANDSCAPE: if (width < height) std::swap(width, height); break; case PAGE_SIZE_AUTO_PORTRAIT: if (width > height) std::swap(width, height); break; case PAGE_SIZE_RESOLVED: { LengthSize size = style->pageSize(); ASSERT(size.width().isFixed()); ASSERT(size.height().isFixed()); width = valueForLength(size.width(), 0, view); height = valueForLength(size.height(), 0, view); break; } default: ASSERT_NOT_REACHED(); } pageSize = IntSize(width, height); // The percentage is calculated with respect to the width even for margin top and bottom. // http://www.w3.org/TR/CSS2/box.html#margin-properties marginTop = style->marginTop().isAuto() ? marginTop : intValueForLength(style->marginTop(), width, view); marginRight = style->marginRight().isAuto() ? marginRight : intValueForLength(style->marginRight(), width, view); marginBottom = style->marginBottom().isAuto() ? marginBottom : intValueForLength(style->marginBottom(), width, view); marginLeft = style->marginLeft().isAuto() ? marginLeft : intValueForLength(style->marginLeft(), width, view); } void Document::setIsViewSource(bool isViewSource) { m_isViewSource = isViewSource; if (!m_isViewSource) return; setSecurityOrigin(SecurityOrigin::createUnique()); didUpdateSecurityOrigin(); } StyleResolver* Document::styleResolver() const { return m_styleEngine->resolver(); } StyleResolver& Document::ensureStyleResolver() const { return m_styleEngine->ensureResolver(); } void Document::clearStyleResolver() { m_styleEngine->clearResolver(); } void Document::attach(const AttachContext& context) { ASSERT(m_lifecyle.state() == DocumentLifecycle::Inactive); ASSERT(!m_axObjectCache || this != topDocument()); m_renderView = new RenderView(this); setRenderer(m_renderView); m_renderView->setIsInWindow(true); m_renderView->setStyle(StyleResolver::styleForDocument(*this)); view()->updateCompositingLayersAfterStyleChange(); m_styleEngine->didAttach(); ContainerNode::attach(context); m_lifecyle.advanceTo(DocumentLifecycle::Active); } void Document::detach(const AttachContext& context) { ASSERT(isActive()); m_lifecyle.advanceTo(DocumentLifecycle::Stopping); if (page()) page()->documentDetached(this); if (this == topDocument()) clearAXObjectCache(); stopActiveDOMObjects(); // FIXME: consider using ActiveDOMObject. if (m_scriptedAnimationController) m_scriptedAnimationController->clearDocumentPointer(); m_scriptedAnimationController.clear(); if (svgExtensions()) accessSVGExtensions()->pauseAnimations(); // FIXME: This shouldn't be needed once DOMWindow becomes ExecutionContext. if (m_domWindow) m_domWindow->clearEventQueue(); RenderView* renderView = m_renderView; if (renderView) renderView->setIsInWindow(false); if (m_frame) { FrameView* view = m_frame->view(); if (view) view->detachCustomScrollbars(); } // Indicate destruction mode by setting the renderer to null. // FIXME: Don't do this and use m_lifecycle.state() == Stopping instead. setRenderer(0); m_renderView = 0; m_hoverNode = 0; m_focusedElement = 0; m_activeElement = 0; ContainerNode::detach(context); unscheduleStyleRecalc(); m_styleEngine->didDetach(); if (renderView) renderView->destroy(); if (m_touchEventTargets && m_touchEventTargets->size() && parentDocument()) parentDocument()->didRemoveEventTargetNode(this); // This is required, as our Frame might delete itself as soon as it detaches // us. However, this violates Node::detach() semantics, as it's never // possible to re-attach. Eventually Document::detach() should be renamed, // or this setting of the frame to 0 could be made explicit in each of the // callers of Document::detach(). m_frame = 0; if (m_mediaQueryMatcher) m_mediaQueryMatcher->documentDestroyed(); lifecycleNotifier().notifyDocumentWasDetached(); m_lifecyle.advanceTo(DocumentLifecycle::Stopped); } void Document::prepareForDestruction() { m_markers->prepareForDestruction(); disconnectDescendantFrames(); // The process of disconnecting descendant frames could have already detached us. if (!isActive()) return; if (DOMWindow* window = this->domWindow()) window->willDetachDocumentFromFrame(); detach(); } void Document::removeAllEventListeners() { EventTarget::removeAllEventListeners(); if (DOMWindow* domWindow = this->domWindow()) domWindow->removeAllEventListeners(); for (Node* node = firstChild(); node; node = NodeTraversal::next(*node)) node->removeAllEventListeners(); } void Document::clearAXObjectCache() { ASSERT(topDocument() == this); // Clear the cache member variable before calling delete because attempts // are made to access it during destruction. m_axObjectCache.clear(); } AXObjectCache* Document::existingAXObjectCache() const { if (!AXObjectCache::accessibilityEnabled()) return 0; // If the renderer is gone then we are in the process of destruction. // This method will be called before m_frame = 0. if (!topDocument()->renderView()) return 0; return topDocument()->m_axObjectCache.get(); } AXObjectCache* Document::axObjectCache() const { if (!AXObjectCache::accessibilityEnabled()) return 0; // The only document that actually has a AXObjectCache 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). Document* topDocument = this->topDocument(); // If the document has already been detached, do not make a new axObjectCache. if (!topDocument->renderView()) return 0; ASSERT(topDocument == this || !m_axObjectCache); if (!topDocument->m_axObjectCache) topDocument->m_axObjectCache = adoptPtr(new AXObjectCache(topDocument)); return topDocument->m_axObjectCache.get(); } void Document::setVisuallyOrdered() { m_visuallyOrdered = true; // FIXME: How is possible to not have a renderer here? if (renderView()) renderView()->style()->setRTLOrdering(VisualOrder); setNeedsStyleRecalc(); } PassRefPtr Document::createParser() { if (isHTMLDocument()) { bool reportErrors = InspectorInstrumentation::collectingHTMLParseErrors(this->page()); return HTMLDocumentParser::create(toHTMLDocument(this), reportErrors); } // FIXME: this should probably pass the frame instead return XMLDocumentParser::create(this, view()); } bool Document::isFrameSet() const { if (!isHTMLDocument()) return false; HTMLElement* bodyElement = body(); return bodyElement && bodyElement->hasTagName(framesetTag); } ScriptableDocumentParser* Document::scriptableDocumentParser() const { return parser() ? parser()->asScriptableDocumentParser() : 0; } void Document::open(Document* ownerDocument) { if (ownerDocument) { setURL(ownerDocument->url()); m_cookieURL = ownerDocument->cookieURL(); setSecurityOrigin(ownerDocument->securityOrigin()); } if (m_frame) { if (ScriptableDocumentParser* parser = scriptableDocumentParser()) { if (parser->isParsing()) { // FIXME: HTML5 doesn't tell us to check this, it might not be correct. if (parser->isExecutingScript()) return; if (!parser->wasCreatedByScript() && parser->hasInsertionPoint()) return; } } if (m_frame->loader().state() == FrameStateProvisional) m_frame->loader().stopAllLoaders(); } removeAllEventListeners(); implicitOpen(); if (ScriptableDocumentParser* parser = scriptableDocumentParser()) parser->setWasCreatedByScript(true); if (m_frame) m_frame->loader().didExplicitOpen(); if (m_loadEventProgress != LoadEventInProgress && m_loadEventProgress != UnloadEventInProgress) m_loadEventProgress = LoadEventNotRun; } void Document::detachParser() { if (!m_parser) return; m_parser->detach(); m_parser.clear(); } void Document::cancelParsing() { if (!m_parser) return; // We have to clear the parser 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. detachParser(); explicitClose(); } PassRefPtr Document::implicitOpen() { cancelParsing(); removeChildren(); ASSERT(!m_focusedElement); setCompatibilityMode(NoQuirksMode); // Documents rendered seamlessly should start out requiring a stylesheet // collection update in order to ensure they inherit all the relevant data // from their parent. if (shouldDisplaySeamlesslyWithParent()) styleResolverChanged(RecalcStyleDeferred); m_parser = createParser(); setParsing(true); setReadyState(Loading); return m_parser; } HTMLElement* Document::body() const { if (!documentElement()) return 0; for (Node* child = documentElement()->firstChild(); child; child = child->nextSibling()) { if (child->hasTagName(framesetTag) || child->hasTagName(bodyTag)) return toHTMLElement(child); } return 0; } void Document::setBody(PassRefPtr prpNewBody, ExceptionState& exceptionState) { RefPtr newBody = prpNewBody; if (!newBody || !documentElement()) { exceptionState.throwUninformativeAndGenericDOMException(HierarchyRequestError); return; } if (!newBody->hasTagName(bodyTag) && !newBody->hasTagName(framesetTag)) { exceptionState.throwUninformativeAndGenericDOMException(HierarchyRequestError); return; } HTMLElement* oldBody = body(); if (oldBody == newBody) return; if (oldBody) documentElement()->replaceChild(newBody.release(), oldBody, exceptionState); else documentElement()->appendChild(newBody.release(), exceptionState); } HTMLHeadElement* Document::head() { Node* de = documentElement(); if (!de) return 0; for (Node* node = de->firstChild(); node; node = node->nextSibling()) { if (node->hasTagName(headTag)) return toHTMLHeadElement(node); } return 0; } void Document::close() { // FIXME: We should follow the specification more closely: // http://www.whatwg.org/specs/web-apps/current-work/#dom-document-close if (!scriptableDocumentParser() || !scriptableDocumentParser()->wasCreatedByScript() || !scriptableDocumentParser()->isParsing()) return; explicitClose(); } void Document::explicitClose() { if (RefPtr parser = m_parser) parser->finish(); if (!m_frame) { // Because we have no frame, we don't know if all loading has completed, // so we just call implicitClose() immediately. FIXME: This might fire // the load event prematurely . implicitClose(); return; } m_frame->loader().checkCompleted(); } void Document::implicitClose() { ASSERT(!inStyleRecalc()); bool wasLocationChangePending = frame() && frame()->navigationScheduler().locationChangePending(); bool doload = !parsing() && m_parser && !processingLoadEvent() && !wasLocationChangePending; // If the load was blocked because of a pending location change and the location change triggers a same document // navigation, don't fire load events after the same document navigation completes (unless there's an explicit open). m_loadEventProgress = LoadEventTried; if (!doload) return; // The call to dispatchWindowLoadEvent can detach the DOMWindow and cause it (and its // attached Document) to be destroyed. RefPtr protectedWindow(this->domWindow()); m_loadEventProgress = LoadEventInProgress; ScriptableDocumentParser* parser = scriptableDocumentParser(); m_wellFormed = parser && parser->wellFormed(); // We have to clear the parser, in case someone document.write()s from the // onLoad event handler, as in Radar 3206524. detachParser(); if (frame() && frame()->script().canExecuteScripts(NotAboutToExecuteScript)) { ImageLoader::dispatchPendingBeforeLoadEvents(); ImageLoader::dispatchPendingLoadEvents(); ImageLoader::dispatchPendingErrorEvents(); HTMLLinkElement::dispatchPendingLoadEvents(); HTMLStyleElement::dispatchPendingLoadEvents(); } // JS running below could remove the frame or destroy the RenderView so we call // those two functions repeatedly and don't save them on the stack. // To align the HTML load event and the SVGLoad event for the outermost element, fire it from // here, instead of doing it from SVGElement::finishedParsingChildren (if externalResourcesRequired="false", // which is the default, for ='true' its fired at a later time, once all external resources finished loading). if (svgExtensions()) accessSVGExtensions()->dispatchSVGLoadEventToOutermostSVGElements(); if (protectedWindow) protectedWindow->documentWasClosed(); if (frame()) { frame()->loader().client()->dispatchDidHandleOnloadEvents(); loader()->applicationCacheHost()->stopDeferringEvents(); } if (!frame()) { m_loadEventProgress = LoadEventCompleted; return; } // 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()->navigationScheduler().locationChangePending() && 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. m_loadEventProgress = LoadEventCompleted; view()->unscheduleRelayout(); return; } // We used to force a synchronous display and flush here. This really isn't // necessary and can in fact be actively harmful if pages are loading at a rate of > 60fps // (if your platform is syncing flushes and limiting them to 60fps). m_overMinimumLayoutThreshold = true; if (!ownerElement() || (ownerElement()->renderer() && !ownerElement()->renderer()->needsLayout())) { updateStyleIfNeeded(); // Always do a layout after loading if needed. if (view() && renderView() && (!renderView()->firstChild() || renderView()->needsLayout())) view()->layout(); } m_loadEventProgress = LoadEventCompleted; if (frame() && renderView() && AXObjectCache::accessibilityEnabled()) { // The AX cache may have been cleared at this point, but we need to make sure it contains an // AX object to send the notification to. getOrCreate will make sure that an valid AX object // exists in the cache (we ignore the return value because we don't need it here). This is // only safe to call when a layout is not in progress, so it can not be used in postNotification. if (AXObjectCache* cache = axObjectCache()) { cache->getOrCreate(renderView()); if (this == topDocument()) { cache->postNotification(renderView(), AXObjectCache::AXLoadComplete, true); } else { // AXLoadComplete can only be posted on the top document, so if it's a document // in an iframe that just finished loading, post AXLayoutComplete instead. cache->postNotification(renderView(), AXObjectCache::AXLayoutComplete, true); } } } if (svgExtensions()) accessSVGExtensions()->startAnimations(); } bool Document::dispatchBeforeUnloadEvent(Chrome& chrome, bool& didAllowNavigation) { if (!m_domWindow) return true; if (!body()) return true; RefPtr protect(this); RefPtr beforeUnloadEvent = BeforeUnloadEvent::create(); m_loadEventProgress = BeforeUnloadEventInProgress; m_domWindow->dispatchEvent(beforeUnloadEvent.get(), this); m_loadEventProgress = BeforeUnloadEventCompleted; if (!beforeUnloadEvent->defaultPrevented()) defaultEventHandler(beforeUnloadEvent.get()); if (beforeUnloadEvent->returnValue().isNull()) return true; if (didAllowNavigation) { addConsoleMessage(JSMessageSource, ErrorMessageLevel, "Blocked attempt to show multiple 'beforeunload' confirmation panels for a single navigation."); return true; } String text = beforeUnloadEvent->returnValue(); if (chrome.runBeforeUnloadConfirmPanel(text, m_frame)) { didAllowNavigation = true; return true; } return false; } void Document::dispatchUnloadEvents() { RefPtr protect(this); if (m_parser) m_parser->stopParsing(); if (m_loadEventProgress >= LoadEventTried && m_loadEventProgress <= UnloadEventInProgress) { Element* currentFocusedElement = focusedElement(); if (currentFocusedElement && currentFocusedElement->hasTagName(inputTag)) toHTMLInputElement(currentFocusedElement)->endEditing(); if (m_loadEventProgress < PageHideInProgress) { m_loadEventProgress = PageHideInProgress; if (DOMWindow* window = domWindow()) window->dispatchEvent(PageTransitionEvent::create(EventTypeNames::pagehide, false), this); if (!m_frame) return; // The DocumentLoader (and thus its DocumentLoadTiming) might get destroyed // while dispatching the event, so protect it to prevent writing the end // time into freed memory. RefPtr documentLoader = m_frame->loader().provisionalDocumentLoader(); m_loadEventProgress = UnloadEventInProgress; RefPtr unloadEvent(Event::create(EventTypeNames::unload)); if (documentLoader && !documentLoader->timing()->unloadEventStart() && !documentLoader->timing()->unloadEventEnd()) { DocumentLoadTiming* timing = documentLoader->timing(); ASSERT(timing->navigationStart()); timing->markUnloadEventStart(); m_frame->domWindow()->dispatchEvent(unloadEvent, this); timing->markUnloadEventEnd(); } else { m_frame->domWindow()->dispatchEvent(unloadEvent, m_frame->document()); } } m_loadEventProgress = UnloadEventHandled; } if (!m_frame) return; // Don't remove event listeners from a transitional empty document (see https://bugs.webkit.org/show_bug.cgi?id=28716 for more information). bool keepEventListeners = m_frame->loader().stateMachine()->isDisplayingInitialEmptyDocument() && m_frame->loader().provisionalDocumentLoader() && isSecureTransitionTo(m_frame->loader().provisionalDocumentLoader()->url()); if (!keepEventListeners) removeAllEventListeners(); } Document::PageDismissalType Document::pageDismissalEventBeingDispatched() const { if (m_loadEventProgress == BeforeUnloadEventInProgress) return BeforeUnloadDismissal; if (m_loadEventProgress == PageHideInProgress) return PageHideDismissal; if (m_loadEventProgress == UnloadEventInProgress) return UnloadDismissal; return NoDismissal; } void Document::setParsing(bool b) { m_bParsing = b; if (m_bParsing && !m_sharedObjectPool) m_sharedObjectPool = DocumentSharedObjectPool::create(); if (!m_bParsing && view()) view()->scheduleRelayout(); } bool Document::shouldScheduleLayout() { // This function will only be called when FrameView thinks a layout is needed. // This enforces a couple extra rules. // // (a) Only schedule a layout once the stylesheets are loaded. // (b) Only schedule layout once we have a body element. return (haveStylesheetsLoaded() && body()) || (documentElement() && !isHTMLHtmlElement(documentElement())); } bool Document::shouldParserYieldAgressivelyBeforeScriptExecution() { return view() && view()->layoutPending() && !minimumLayoutDelay(); } 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 max(0, cLayoutScheduleThreshold - elapsed); } int Document::elapsedTime() const { return static_cast((currentTime() - m_startTime) * 1000); } void Document::write(const SegmentedString& text, Document* ownerDocument) { NestingLevelIncrementer nestingLevelIncrementer(m_writeRecursionDepth); m_writeRecursionIsTooDeep = (m_writeRecursionDepth > 1) && m_writeRecursionIsTooDeep; m_writeRecursionIsTooDeep = (m_writeRecursionDepth > cMaxWriteRecursionDepth) || m_writeRecursionIsTooDeep; if (m_writeRecursionIsTooDeep) return; bool hasInsertionPoint = m_parser && m_parser->hasInsertionPoint(); if (!hasInsertionPoint && m_ignoreDestructiveWriteCount) return; if (!hasInsertionPoint) open(ownerDocument); ASSERT(m_parser); m_parser->insert(text); } void Document::write(const String& text, Document* ownerDocument) { write(SegmentedString(text), ownerDocument); } void Document::writeln(const String& text, Document* ownerDocument) { write(text, ownerDocument); write("\n", ownerDocument); } const KURL& Document::virtualURL() const { return m_url; } KURL Document::virtualCompleteURL(const String& url) const { return completeURL(url); } double Document::timerAlignmentInterval() const { Page* p = page(); if (!p) return DOMTimer::visiblePageAlignmentInterval(); return p->timerAlignmentInterval(); } EventTarget* Document::errorEventTarget() { return domWindow(); } void Document::logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr callStack) { internalAddMessage(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber, callStack, 0); } void Document::setURL(const KURL& url) { const KURL& newURL = url.isEmpty() ? blankURL() : url; if (newURL == m_url) return; m_url = newURL; m_documentURI = m_url.string(); updateBaseURL(); contextFeatures()->urlDidChange(this); } void Document::updateBaseURL() { KURL oldBaseURL = m_baseURL; // DOM 3 Core: When the Document supports the feature "HTML" [DOM Level 2 HTML], the base URI is computed using // first the value of the href attribute of the HTML BASE element if any, and the value of the documentURI attribute // from the Document interface otherwise. if (!m_baseElementURL.isEmpty()) m_baseURL = m_baseElementURL; else if (!m_baseURLOverride.isEmpty()) m_baseURL = m_baseURLOverride; else { // The documentURI attribute is read-only from JavaScript, but writable from Objective C, so we need to retain // this fallback behavior. We use a null base URL, since the documentURI attribute is an arbitrary string // and DOM 3 Core does not specify how it should be resolved. // FIXME: Now that we don't support Objective-C this can probably be removed. m_baseURL = KURL(ParsedURLString, documentURI()); } selectorQueryCache().invalidate(); if (!m_baseURL.isValid()) m_baseURL = KURL(); if (m_elemSheet) { // Element sheet is silly. It never contains anything. ASSERT(!m_elemSheet->contents()->ruleCount()); bool usesRemUnits = m_elemSheet->contents()->usesRemUnits(); m_elemSheet = CSSStyleSheet::createInline(this, m_baseURL); // FIXME: So we are not really the parser. The right fix is to eliminate the element sheet completely. m_elemSheet->contents()->parserSetUsesRemUnits(usesRemUnits); } if (!equalIgnoringFragmentIdentifier(oldBaseURL, m_baseURL)) { // Base URL change changes any relative visited links. // FIXME: There are other URLs in the tree that would need to be re-evaluated on dynamic base URL change. Style should be invalidated too. for (Element* element = ElementTraversal::firstWithin(*this); element; element = ElementTraversal::next(*element)) { if (isHTMLAnchorElement(element)) toHTMLAnchorElement(element)->invalidateCachedVisitedLinkHash(); } } } void Document::setBaseURLOverride(const KURL& url) { m_baseURLOverride = url; updateBaseURL(); } void Document::processBaseElement() { // Find the first href attribute in a base element and the first target attribute in a base element. const AtomicString* href = 0; const AtomicString* target = 0; for (Element* element = ElementTraversal::firstWithin(*this); element && (!href || !target); element = ElementTraversal::next(*element)) { if (element->hasTagName(baseTag)) { if (!href) { const AtomicString& value = element->fastGetAttribute(hrefAttr); if (!value.isNull()) href = &value; } if (!target) { const AtomicString& value = element->fastGetAttribute(targetAttr); if (!value.isNull()) target = &value; } if (contentSecurityPolicy()->isActive()) UseCounter::count(*this, UseCounter::ContentSecurityPolicyWithBaseElement); } } // FIXME: Since this doesn't share code with completeURL it may not handle encodings correctly. KURL baseElementURL; if (href) { String strippedHref = stripLeadingAndTrailingHTMLSpaces(*href); if (!strippedHref.isEmpty()) baseElementURL = KURL(url(), strippedHref); } if (m_baseElementURL != baseElementURL && contentSecurityPolicy()->allowBaseURI(baseElementURL)) { m_baseElementURL = baseElementURL; updateBaseURL(); } m_baseTarget = target ? *target : nullAtom; } String Document::userAgent(const KURL& url) const { return frame() ? frame()->loader().userAgent(url) : String(); } void Document::disableEval(const String& errorMessage) { if (!frame()) return; frame()->script().disableEval(errorMessage); } bool Document::canNavigate(Frame* targetFrame) { if (!m_frame) return false; // FIXME: We shouldn't call this function without a target frame, but // fast/forms/submit-to-blank-multiple-times.html depends on this function // returning true when supplied with a 0 targetFrame. if (!targetFrame) return true; // Frame-busting is generally allowed, but blocked for sandboxed frames lacking the 'allow-top-navigation' flag. if (!isSandboxed(SandboxTopNavigation) && targetFrame == m_frame->tree().top()) return true; if (isSandboxed(SandboxNavigation)) { if (targetFrame->tree().isDescendantOf(m_frame)) return true; const char* reason = "The frame attempting navigation is sandboxed, and is therefore disallowed from navigating its ancestors."; if (isSandboxed(SandboxTopNavigation) && targetFrame == m_frame->tree().top()) reason = "The frame attempting navigation of the top-level window is sandboxed, but the 'allow-top-navigation' flag is not set."; printNavigationErrorMessage(*targetFrame, url(), reason); return false; } ASSERT(securityOrigin()); SecurityOrigin& origin = *securityOrigin(); // This is the normal case. A document can navigate its decendant frames, // or, more generally, a document can navigate a frame if the document is // in the same origin as any of that frame's ancestors (in the frame // hierarchy). // // See http://www.adambarth.com/papers/2008/barth-jackson-mitchell.pdf for // historical information about this security check. if (canAccessAncestor(origin, targetFrame)) return true; // Top-level frames are easier to navigate than other frames because they // display their URLs in the address bar (in most browsers). However, there // are still some restrictions on navigation to avoid nuisance attacks. // Specifically, a document can navigate a top-level frame if that frame // opened the document or if the document is the same-origin with any of // the top-level frame's opener's ancestors (in the frame hierarchy). // // In both of these cases, the document performing the navigation is in // some way related to the frame being navigate (e.g., by the "opener" // and/or "parent" relation). Requiring some sort of relation prevents a // document from navigating arbitrary, unrelated top-level frames. if (!targetFrame->tree().parent()) { if (targetFrame == m_frame->loader().opener()) return true; if (canAccessAncestor(origin, targetFrame->loader().opener())) return true; } printNavigationErrorMessage(*targetFrame, url(), "The frame attempting navigation is neither same-origin with the target, nor is it the target's parent or opener."); return false; } Frame* Document::findUnsafeParentScrollPropagationBoundary() { Frame* currentFrame = m_frame; Frame* ancestorFrame = currentFrame->tree().parent(); while (ancestorFrame) { if (!ancestorFrame->document()->securityOrigin()->canAccess(securityOrigin())) return currentFrame; currentFrame = ancestorFrame; ancestorFrame = ancestorFrame->tree().parent(); } return 0; } void Document::seamlessParentUpdatedStylesheets() { m_styleEngine->didModifySeamlessParentStyleSheet(); styleResolverChanged(RecalcStyleImmediately); } void Document::didRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPendingStylesheet = false; styleResolverChanged(RecalcStyleDeferred, AnalyzedStyleUpdate); executeScriptsWaitingForResourcesIfNeeded(); if (m_gotoAnchorNeededAfterStylesheetsLoad && view()) view()->scrollToFragment(m_url); } void Document::executeScriptsWaitingForResourcesIfNeeded() { if (!haveStylesheetsAndImportsLoaded()) return; if (ScriptableDocumentParser* parser = scriptableDocumentParser()) parser->executeScriptsWaitingForResources(); } CSSStyleSheet* Document::elementSheet() { if (!m_elemSheet) m_elemSheet = CSSStyleSheet::createInline(this, m_baseURL); return m_elemSheet.get(); } void Document::processHttpEquiv(const AtomicString& equiv, const AtomicString& content) { ASSERT(!equiv.isNull() && !content.isNull()); if (equalIgnoringCase(equiv, "default-style")) processHttpEquivDefaultStyle(content); else if (equalIgnoringCase(equiv, "refresh")) processHttpEquivRefresh(content); else if (equalIgnoringCase(equiv, "set-cookie")) processHttpEquivSetCookie(content); else if (equalIgnoringCase(equiv, "content-language")) setContentLanguage(content); else if (equalIgnoringCase(equiv, "x-dns-prefetch-control")) parseDNSPrefetchControlHeader(content); else if (equalIgnoringCase(equiv, "x-frame-options")) processHttpEquivXFrameOptions(content); else if (equalIgnoringCase(equiv, "content-security-policy") || equalIgnoringCase(equiv, "content-security-policy-report-only") || equalIgnoringCase(equiv, "x-webkit-csp") || equalIgnoringCase(equiv, "x-webkit-csp-report-only")) processHttpEquivContentSecurityPolicy(equiv, content); } void Document::processHttpEquivContentSecurityPolicy(const AtomicString& equiv, const AtomicString& content) { if (equalIgnoringCase(equiv, "content-security-policy")) contentSecurityPolicy()->didReceiveHeader(content, ContentSecurityPolicy::Enforce); else if (equalIgnoringCase(equiv, "content-security-policy-report-only")) contentSecurityPolicy()->didReceiveHeader(content, ContentSecurityPolicy::Report); // FIXME: Remove deprecation messages after the next release branch. else if (equalIgnoringCase(equiv, "x-webkit-csp")) UseCounter::countDeprecation(this, UseCounter::PrefixedContentSecurityPolicy); else if (equalIgnoringCase(equiv, "x-webkit-csp-report-only")) UseCounter::countDeprecation(this, UseCounter::PrefixedContentSecurityPolicyReportOnly); else ASSERT_NOT_REACHED(); } void Document::processHttpEquivDefaultStyle(const AtomicString& content) { // 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_styleEngine->setSelectedStylesheetSetName(content); m_styleEngine->setPreferredStylesheetSetName(content); styleResolverChanged(RecalcStyleDeferred); } void Document::processHttpEquivRefresh(const AtomicString& content) { maybeHandleHttpRefresh(content, HttpRefreshFromMetaTag); } void Document::maybeHandleHttpRefresh(const String& content, HttpRefreshType httpRefreshType) { if (m_isViewSource || !m_frame) return; double delay; String refreshURL; if (!parseHTTPRefresh(content, httpRefreshType == HttpRefreshFromMetaTag, delay, refreshURL)) return; if (refreshURL.isEmpty()) refreshURL = url().string(); else refreshURL = completeURL(refreshURL).string(); if (protocolIsJavaScript(refreshURL)) { String message = "Refused to refresh " + m_url.elidedString() + " to a javascript: URL"; addConsoleMessage(SecurityMessageSource, ErrorMessageLevel, message); return; } if (httpRefreshType == HttpRefreshFromMetaTag && isSandboxed(SandboxAutomaticFeatures)) { String message = "Refused to execute the redirect specified via ''. The document is sandboxed, and the 'allow-scripts' keyword is not set."; addConsoleMessage(SecurityMessageSource, ErrorMessageLevel, message); return; } m_frame->navigationScheduler().scheduleRedirect(delay, refreshURL); } void Document::processHttpEquivSetCookie(const AtomicString& content) { // FIXME: make setCookie work on XML documents too; e.g. in case of if (!isHTMLDocument()) return; // Exception (for sandboxed documents) ignored. toHTMLDocument(this)->setCookie(content, IGNORE_EXCEPTION); } void Document::processHttpEquivXFrameOptions(const AtomicString& content) { Frame* frame = this->frame(); if (!frame) return; FrameLoader& frameLoader = frame->loader(); unsigned long requestIdentifier = loader()->mainResourceIdentifier(); if (frameLoader.shouldInterruptLoadForXFrameOptions(content, url(), requestIdentifier)) { String message = "Refused to display '" + url().elidedString() + "' in a frame because it set 'X-Frame-Options' to '" + content + "'."; frameLoader.stopAllLoaders(); // Stopping the loader isn't enough, as we're already parsing the document; to honor the header's // intent, we must navigate away from the possibly partially-rendered document to a location that // doesn't inherit the parent's SecurityOrigin. frame->navigationScheduler().scheduleLocationChange(securityOrigin(), SecurityOrigin::urlWithUniqueSecurityOrigin(), String()); addConsoleMessageWithRequestIdentifier(SecurityMessageSource, ErrorMessageLevel, message, requestIdentifier); } } bool Document::shouldMergeWithLegacyDescription(ViewportDescription::Type origin) { return settings() && settings()->viewportMetaMergeContentQuirk() && m_legacyViewportDescription.isMetaViewportType() && m_legacyViewportDescription.type == origin; } void Document::setViewportDescription(const ViewportDescription& viewportDescription) { if (viewportDescription.isLegacyViewportType()) { if (settings() && !settings()->viewportMetaEnabled()) return; m_legacyViewportDescription = viewportDescription; // When no author style for @viewport is present, and a meta tag for defining // the viewport is, apply the meta tag viewport instead of the UA styles. if (m_viewportDescription.type == ViewportDescription::AuthorStyleSheet) return; m_viewportDescription = viewportDescription; } else { // If the legacy viewport tag has higher priority than the cascaded @viewport // descriptors, use the values from the legacy tag. if (!shouldOverrideLegacyDescription(viewportDescription.type)) m_viewportDescription = m_legacyViewportDescription; else m_viewportDescription = viewportDescription; } updateViewportDescription(); } void Document::updateViewportDescription() { if (frame() && frame()->isMainFrame()) { #ifndef NDEBUG m_didDispatchViewportPropertiesChanged = true; #endif page()->chrome().dispatchViewportPropertiesDidChange(m_viewportDescription); } } void Document::processReferrerPolicy(const String& policy) { ASSERT(!policy.isNull()); m_referrerPolicy = ReferrerPolicyDefault; if (equalIgnoringCase(policy, "never")) m_referrerPolicy = ReferrerPolicyNever; else if (equalIgnoringCase(policy, "always")) m_referrerPolicy = ReferrerPolicyAlways; else if (equalIgnoringCase(policy, "origin")) m_referrerPolicy = ReferrerPolicyOrigin; } MouseEventWithHitTestResults Document::prepareMouseEvent(const HitTestRequest& request, const LayoutPoint& documentPoint, const PlatformMouseEvent& event) { ASSERT(!renderView() || renderView()->isRenderView()); // RenderView::hitTest causes a layout, and we don't want to hit that until the first // layout because until then, there is nothing shown on the screen - the user can't // have intentionally clicked on something belonging to this page. Furthermore, // mousemove events before the first layout should not lead to a premature layout() // happening, which could show a flash of white. // See also the similar code in EventHandler::hitTestResultAtPoint. if (!renderView() || !view() || !view()->didFirstLayout()) return MouseEventWithHitTestResults(event, HitTestResult(LayoutPoint())); HitTestResult result(documentPoint); renderView()->hitTest(request, result); if (!request.readOnly()) updateHoverActiveState(request, result.innerElement(), &event); return MouseEventWithHitTestResults(event, result); } // DOM Section 1.1.1 bool Document::childTypeAllowed(NodeType type) const { switch (type) { case ATTRIBUTE_NODE: case CDATA_SECTION_NODE: case DOCUMENT_FRAGMENT_NODE: case DOCUMENT_NODE: case ENTITY_NODE: case NOTATION_NODE: case TEXT_NODE: case XPATH_NAMESPACE_NODE: return false; case COMMENT_NODE: case PROCESSING_INSTRUCTION_NODE: return true; case DOCUMENT_TYPE_NODE: case ELEMENT_NODE: // Documents may contain no more than one of each of these. // (One Element and one DocumentType.) for (Node* c = firstChild(); c; c = c->nextSibling()) if (c->nodeType() == type) return false; return true; } return false; } bool Document::canReplaceChild(const Node& newChild, const Node& oldChild) const { if (oldChild.nodeType() == newChild.nodeType()) return true; int numDoctypes = 0; int numElements = 0; // First, check how many doctypes and elements we have, not counting // the child we're about to remove. for (Node* c = firstChild(); c; c = c->nextSibling()) { if (c == oldChild) continue; switch (c->nodeType()) { case DOCUMENT_TYPE_NODE: numDoctypes++; break; case ELEMENT_NODE: numElements++; break; default: break; } } // Then, see how many doctypes and elements might be added by the new child. if (newChild.nodeType() == DOCUMENT_FRAGMENT_NODE) { for (Node* c = newChild.firstChild(); c; c = c->nextSibling()) { switch (c->nodeType()) { case ATTRIBUTE_NODE: case CDATA_SECTION_NODE: case DOCUMENT_FRAGMENT_NODE: case DOCUMENT_NODE: case ENTITY_NODE: case NOTATION_NODE: case TEXT_NODE: case XPATH_NAMESPACE_NODE: return false; case COMMENT_NODE: case PROCESSING_INSTRUCTION_NODE: break; case DOCUMENT_TYPE_NODE: numDoctypes++; break; case ELEMENT_NODE: numElements++; break; } } } else { switch (newChild.nodeType()) { case ATTRIBUTE_NODE: case CDATA_SECTION_NODE: case DOCUMENT_FRAGMENT_NODE: case DOCUMENT_NODE: case ENTITY_NODE: case NOTATION_NODE: case TEXT_NODE: case XPATH_NAMESPACE_NODE: return false; case COMMENT_NODE: case PROCESSING_INSTRUCTION_NODE: return true; case DOCUMENT_TYPE_NODE: numDoctypes++; break; case ELEMENT_NODE: numElements++; break; } } if (numElements > 1 || numDoctypes > 1) return false; return true; } PassRefPtr Document::cloneNode(bool deep) { RefPtr clone = cloneDocumentWithoutChildren(); clone->cloneDataFromDocument(*this); if (deep) cloneChildNodes(clone.get()); return clone.release(); } PassRefPtr Document::cloneDocumentWithoutChildren() { DocumentInit init(url()); if (isXHTMLDocument()) return createXHTML(init.withRegistrationContext(registrationContext())); return create(init); } void Document::cloneDataFromDocument(const Document& other) { setCompatibilityMode(other.compatibilityMode()); setEncodingData(other.m_encodingData); setContextFeatures(other.contextFeatures()); setSecurityOrigin(other.securityOrigin()->isolatedCopy()); } StyleSheetList* Document::styleSheets() { if (!m_styleSheetList) m_styleSheetList = StyleSheetList::create(this); return m_styleSheetList.get(); } String Document::preferredStylesheetSet() const { return m_styleEngine->preferredStylesheetSetName(); } String Document::selectedStylesheetSet() const { return m_styleEngine->selectedStylesheetSetName(); } void Document::setSelectedStylesheetSet(const String& aString) { m_styleEngine->setSelectedStylesheetSetName(aString); styleResolverChanged(RecalcStyleDeferred); } void Document::evaluateMediaQueryList() { if (m_mediaQueryMatcher) m_mediaQueryMatcher->styleResolverChanged(); } void Document::styleResolverChanged(RecalcStyleTime updateTime, StyleResolverUpdateMode updateMode) { // styleResolverChanged() can be invoked during Document destruction. // We just skip that case. if (!m_styleEngine) return; StyleResolverChange change = m_styleEngine->resolverChanged(updateTime, updateMode); if (change.needsRepaint()) { // We need to manually repaint because we avoid doing all repaints in layout or style // recalc while sheets are still loading to avoid FOUC. m_pendingSheetLayout = IgnoreLayoutWithPendingSheets; renderView()->repaintViewAndCompositedLayers(); } if (!change.needsStyleRecalc()) return; m_evaluateMediaQueriesOnStyleRecalc = true; setNeedsStyleRecalc(); if (updateTime == RecalcStyleImmediately) updateStyleIfNeeded(); } void Document::notifySeamlessChildDocumentsOfStylesheetUpdate() const { // If we're not in a frame yet any potential child documents won't have a StyleResolver to update. if (!frame()) return; // Seamless child frames are expected to notify their seamless children recursively, so we only do direct children. for (Frame* child = frame()->tree().firstChild(); child; child = child->tree().nextSibling()) { Document* childDocument = child->document(); if (childDocument->shouldDisplaySeamlesslyWithParent()) { ASSERT(childDocument->seamlessParentIFrame()->document() == this); childDocument->seamlessParentUpdatedStylesheets(); } } } void Document::setHoverNode(PassRefPtr newHoverNode) { m_hoverNode = newHoverNode; } void Document::setActiveElement(PassRefPtr newActiveElement) { if (!newActiveElement) { m_activeElement.clear(); return; } m_activeElement = newActiveElement; } void Document::removeFocusedElementOfSubtree(Node* node, bool amongChildrenOnly) { if (!m_focusedElement) return; // We can't be focused if we're not in the document. if (!node->inDocument()) return; bool contains = node->containsIncludingShadowDOM(m_focusedElement.get()); if (contains && (m_focusedElement != node || !amongChildrenOnly)) setFocusedElement(0); } void Document::hoveredNodeDetached(Node* node) { if (!m_hoverNode) return; if (node != m_hoverNode && (!m_hoverNode->isTextNode() || node != NodeRenderingTraversal::parent(m_hoverNode.get()))) return; m_hoverNode = NodeRenderingTraversal::parent(node); while (m_hoverNode && !m_hoverNode->renderer()) m_hoverNode = NodeRenderingTraversal::parent(m_hoverNode.get()); // If the mouse cursor is not visible, do not clear existing // hover effects on the ancestors of |node| and do not invoke // new hover effects on any other element. if (!page()->isCursorVisible()) return; if (frame()) frame()->eventHandler().scheduleHoverStateUpdate(); } void Document::activeChainNodeDetached(Node* node) { if (!m_activeElement) return; if (node != m_activeElement && (!m_activeElement->isTextNode() || node != NodeRenderingTraversal::parent(m_activeElement.get()))) return; Node* activeNode = NodeRenderingTraversal::parent(node); while (activeNode && activeNode->isElementNode() && !activeNode->renderer()) activeNode = NodeRenderingTraversal::parent(activeNode); m_activeElement = activeNode && activeNode->isElementNode() ? toElement(activeNode) : 0; } const Vector& Document::annotatedRegions() const { return m_annotatedRegions; } void Document::setAnnotatedRegions(const Vector& regions) { m_annotatedRegions = regions; setAnnotatedRegionsDirty(false); } bool Document::setFocusedElement(PassRefPtr prpNewFocusedElement, FocusDirection direction) { RefPtr newFocusedElement = prpNewFocusedElement; // Make sure newFocusedNode is actually in this document if (newFocusedElement && (newFocusedElement->document() != this)) return true; if (NodeChildRemovalTracker::isBeingRemoved(newFocusedElement.get())) return true; if (m_focusedElement == newFocusedElement) return true; bool focusChangeBlocked = false; RefPtr oldFocusedElement = m_focusedElement; m_focusedElement = 0; // Remove focus from the existing focus node (if any) if (oldFocusedElement) { ASSERT(!oldFocusedElement->inDetach()); if (oldFocusedElement->active()) oldFocusedElement->setActive(false); oldFocusedElement->setFocus(false); // Dispatch a change event for text fields or textareas that have been edited if (oldFocusedElement->wasChangedSinceLastFormControlChangeEvent()) oldFocusedElement->dispatchFormControlChangeEvent(); // Dispatch the blur event and let the node do any other blur related activities (important for text fields) oldFocusedElement->dispatchBlurEvent(newFocusedElement.get()); if (m_focusedElement) { // handler shifted focus focusChangeBlocked = true; newFocusedElement = 0; } oldFocusedElement->dispatchFocusOutEvent(EventTypeNames::focusout, newFocusedElement.get()); // DOM level 3 name for the bubbling blur event. // FIXME: We should remove firing DOMFocusOutEvent event when we are sure no content depends // on it, probably when is resolved. oldFocusedElement->dispatchFocusOutEvent(EventTypeNames::DOMFocusOut, newFocusedElement.get()); // DOM level 2 name for compatibility. if (m_focusedElement) { // handler shifted focus focusChangeBlocked = true; newFocusedElement = 0; } if (view()) { Widget* oldWidget = widgetForElement(*oldFocusedElement); if (oldWidget) oldWidget->setFocus(false); else view()->setFocus(false); } // Autofill client may have modified the value of newFocusedElement, thus require // a layout update here, otherwise it will assert at newFocusedElement->isFocusable(). // See crbug.com/251163. updateLayoutIgnorePendingStylesheets(); } if (newFocusedElement && newFocusedElement->isFocusable()) { if (newFocusedElement->isRootEditableElement() && !acceptsEditingFocus(*newFocusedElement)) { // delegate blocks focus change focusChangeBlocked = true; goto SetFocusedElementDone; } // Set focus on the new node m_focusedElement = newFocusedElement; // Dispatch the focus event and let the node do any other focus related activities (important for text fields) m_focusedElement->dispatchFocusEvent(oldFocusedElement.get(), direction); if (m_focusedElement != newFocusedElement) { // handler shifted focus focusChangeBlocked = true; goto SetFocusedElementDone; } m_focusedElement->dispatchFocusInEvent(EventTypeNames::focusin, oldFocusedElement.get()); // DOM level 3 bubbling focus event. if (m_focusedElement != newFocusedElement) { // handler shifted focus focusChangeBlocked = true; goto SetFocusedElementDone; } // FIXME: We should remove firing DOMFocusInEvent event when we are sure no content depends // on it, probably when is m. m_focusedElement->dispatchFocusInEvent(EventTypeNames::DOMFocusIn, oldFocusedElement.get()); // DOM level 2 for compatibility. if (m_focusedElement != newFocusedElement) { // handler shifted focus focusChangeBlocked = true; goto SetFocusedElementDone; } m_focusedElement->setFocus(true); if (m_focusedElement->isRootEditableElement()) frame()->spellChecker().didBeginEditing(m_focusedElement.get()); // eww, I suck. set the qt focus correctly // ### find a better place in the code for this if (view()) { Widget* focusWidget = widgetForElement(*m_focusedElement); if (focusWidget) { // Make sure a widget has the right size before giving it focus. // Otherwise, we are testing edge cases of the Widget code. // Specifically, in WebCore this does not work well for text fields. updateLayout(); // Re-get the widget in case updating the layout changed things. focusWidget = widgetForElement(*m_focusedElement); } if (focusWidget) focusWidget->setFocus(true); else view()->setFocus(true); } } if (!focusChangeBlocked && m_focusedElement) { // Create the AXObject cache in a focus change because Chromium relies on it. if (AXObjectCache* cache = axObjectCache()) cache->handleFocusedUIElementChanged(oldFocusedElement.get(), newFocusedElement.get()); } if (!focusChangeBlocked && page()) page()->chrome().focusedNodeChanged(m_focusedElement.get()); SetFocusedElementDone: updateStyleIfNeeded(); if (Frame* frame = this->frame()) frame->selection().didChangeFocus(); return !focusChangeBlocked; } void Document::setCSSTarget(Element* n) { if (m_cssTarget) m_cssTarget->didAffectSelector(AffectedSelectorTarget); m_cssTarget = n; if (n) n->didAffectSelector(AffectedSelectorTarget); } void Document::registerNodeList(LiveNodeListBase* list) { if (list->hasIdNameCache()) m_nodeListCounts[InvalidateOnIdNameAttrChange]++; m_nodeListCounts[list->invalidationType()]++; if (list->isRootedAtDocument()) m_listsInvalidatedAtDocument.add(list); } void Document::unregisterNodeList(LiveNodeListBase* list) { if (list->hasIdNameCache()) m_nodeListCounts[InvalidateOnIdNameAttrChange]--; m_nodeListCounts[list->invalidationType()]--; if (list->isRootedAtDocument()) { ASSERT(m_listsInvalidatedAtDocument.contains(list)); m_listsInvalidatedAtDocument.remove(list); } } void Document::attachNodeIterator(NodeIterator* ni) { m_nodeIterators.add(ni); } void Document::detachNodeIterator(NodeIterator* ni) { // The node iterator can be detached without having been attached if its root node didn't have a document // when the iterator was created, but has it now. m_nodeIterators.remove(ni); } void Document::moveNodeIteratorsToNewDocument(Node* node, Document* newDocument) { HashSet nodeIteratorsList = m_nodeIterators; HashSet::const_iterator nodeIteratorsEnd = nodeIteratorsList.end(); for (HashSet::const_iterator it = nodeIteratorsList.begin(); it != nodeIteratorsEnd; ++it) { if ((*it)->root() == node) { detachNodeIterator(*it); newDocument->attachNodeIterator(*it); } } } void Document::updateRangesAfterChildrenChanged(ContainerNode* container) { if (!m_ranges.isEmpty()) { HashSet::const_iterator end = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != end; ++it) (*it)->nodeChildrenChanged(container); } } void Document::nodeChildrenWillBeRemoved(ContainerNode* container) { NoEventDispatchAssertion assertNoEventDispatch; if (!m_ranges.isEmpty()) { HashSet::const_iterator end = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != end; ++it) (*it)->nodeChildrenWillBeRemoved(container); } HashSet::const_iterator nodeIteratorsEnd = m_nodeIterators.end(); for (HashSet::const_iterator it = m_nodeIterators.begin(); it != nodeIteratorsEnd; ++it) { for (Node* n = container->firstChild(); n; n = n->nextSibling()) (*it)->nodeWillBeRemoved(*n); } if (Frame* frame = this->frame()) { for (Node* n = container->firstChild(); n; n = n->nextSibling()) { frame->eventHandler().nodeWillBeRemoved(*n); frame->selection().nodeWillBeRemoved(*n); frame->page()->dragCaretController().nodeWillBeRemoved(*n); } } } void Document::nodeWillBeRemoved(Node& n) { HashSet::const_iterator nodeIteratorsEnd = m_nodeIterators.end(); for (HashSet::const_iterator it = m_nodeIterators.begin(); it != nodeIteratorsEnd; ++it) (*it)->nodeWillBeRemoved(n); if (!m_ranges.isEmpty()) { HashSet::const_iterator rangesEnd = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != rangesEnd; ++it) (*it)->nodeWillBeRemoved(n); } if (Frame* frame = this->frame()) { frame->eventHandler().nodeWillBeRemoved(n); frame->selection().nodeWillBeRemoved(n); frame->page()->dragCaretController().nodeWillBeRemoved(n); } } void Document::didInsertText(Node* text, unsigned offset, unsigned length) { if (!m_ranges.isEmpty()) { HashSet::const_iterator end = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != end; ++it) (*it)->didInsertText(text, offset, length); } // Update the markers for spelling and grammar checking. m_markers->shiftMarkers(text, offset, length); } void Document::didRemoveText(Node* text, unsigned offset, unsigned length) { if (!m_ranges.isEmpty()) { HashSet::const_iterator end = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != end; ++it) (*it)->didRemoveText(text, offset, length); } // Update the markers for spelling and grammar checking. m_markers->removeMarkers(text, offset, length); m_markers->shiftMarkers(text, offset + length, 0 - length); } void Document::didMergeTextNodes(Text* oldNode, unsigned offset) { if (!m_ranges.isEmpty()) { NodeWithIndex oldNodeWithIndex(oldNode); HashSet::const_iterator end = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != end; ++it) (*it)->didMergeTextNodes(oldNodeWithIndex, offset); } if (m_frame) m_frame->selection().didMergeTextNodes(*oldNode, offset); // FIXME: This should update markers for spelling and grammar checking. } void Document::didSplitTextNode(Text* oldNode) { if (!m_ranges.isEmpty()) { HashSet::const_iterator end = m_ranges.end(); for (HashSet::const_iterator it = m_ranges.begin(); it != end; ++it) (*it)->didSplitTextNode(oldNode); } if (m_frame) m_frame->selection().didSplitTextNode(*oldNode); // FIXME: This should update markers for spelling and grammar checking. } void Document::setWindowAttributeEventListener(const AtomicString& eventType, PassRefPtr listener, DOMWrapperWorld* isolatedWorld) { DOMWindow* domWindow = this->domWindow(); if (!domWindow) return; domWindow->setAttributeEventListener(eventType, listener, isolatedWorld); } EventListener* Document::getWindowAttributeEventListener(const AtomicString& eventType, DOMWrapperWorld* isolatedWorld) { DOMWindow* domWindow = this->domWindow(); if (!domWindow) return 0; return domWindow->getAttributeEventListener(eventType, isolatedWorld); } EventQueue* Document::eventQueue() const { if (!m_domWindow) return 0; return m_domWindow->eventQueue(); } void Document::enqueueAnimationFrameEvent(PassRefPtr event) { ensureScriptedAnimationController().enqueueEvent(event); } void Document::enqueueScrollEventForNode(Node* target) { // Per the W3C CSSOM View Module only scroll events fired at the document should bubble. RefPtr scrollEvent = target->isDocumentNode() ? Event::createBubble(EventTypeNames::scroll) : Event::create(EventTypeNames::scroll); scrollEvent->setTarget(target); ensureScriptedAnimationController().enqueuePerFrameEvent(scrollEvent.release()); } void Document::enqueueResizeEvent() { RefPtr event = Event::create(EventTypeNames::resize); event->setTarget(domWindow()); ensureScriptedAnimationController().enqueuePerFrameEvent(event.release()); } PassRefPtr Document::createEvent(const String& eventType, ExceptionState& exceptionState) { RefPtr event = EventFactory::create(eventType); if (event) return event.release(); exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError); return 0; } void Document::addMutationEventListenerTypeIfEnabled(ListenerType listenerType) { if (ContextFeatures::mutationEventsEnabled(this)) addListenerType(listenerType); } void Document::addListenerTypeIfNeeded(const AtomicString& eventType) { if (eventType == EventTypeNames::DOMSubtreeModified) { UseCounter::count(*this, UseCounter::DOMSubtreeModifiedEvent); addMutationEventListenerTypeIfEnabled(DOMSUBTREEMODIFIED_LISTENER); } else if (eventType == EventTypeNames::DOMNodeInserted) { UseCounter::count(*this, UseCounter::DOMNodeInsertedEvent); addMutationEventListenerTypeIfEnabled(DOMNODEINSERTED_LISTENER); } else if (eventType == EventTypeNames::DOMNodeRemoved) { UseCounter::count(*this, UseCounter::DOMNodeRemovedEvent); addMutationEventListenerTypeIfEnabled(DOMNODEREMOVED_LISTENER); } else if (eventType == EventTypeNames::DOMNodeRemovedFromDocument) { UseCounter::count(*this, UseCounter::DOMNodeRemovedFromDocumentEvent); addMutationEventListenerTypeIfEnabled(DOMNODEREMOVEDFROMDOCUMENT_LISTENER); } else if (eventType == EventTypeNames::DOMNodeInsertedIntoDocument) { UseCounter::count(*this, UseCounter::DOMNodeInsertedIntoDocumentEvent); addMutationEventListenerTypeIfEnabled(DOMNODEINSERTEDINTODOCUMENT_LISTENER); } else if (eventType == EventTypeNames::DOMCharacterDataModified) { UseCounter::count(*this, UseCounter::DOMCharacterDataModifiedEvent); addMutationEventListenerTypeIfEnabled(DOMCHARACTERDATAMODIFIED_LISTENER); } else if (eventType == EventTypeNames::overflowchanged) { UseCounter::count(*this, UseCounter::OverflowChangedEvent); addListenerType(OVERFLOWCHANGED_LISTENER); } else if (eventType == EventTypeNames::webkitAnimationStart || (RuntimeEnabledFeatures::cssAnimationUnprefixedEnabled() && eventType == EventTypeNames::animationstart)) { addListenerType(ANIMATIONSTART_LISTENER); } else if (eventType == EventTypeNames::webkitAnimationEnd || (RuntimeEnabledFeatures::cssAnimationUnprefixedEnabled() && eventType == EventTypeNames::animationend)) { addListenerType(ANIMATIONEND_LISTENER); } else if (eventType == EventTypeNames::webkitAnimationIteration || (RuntimeEnabledFeatures::cssAnimationUnprefixedEnabled() && eventType == EventTypeNames::animationiteration)) { addListenerType(ANIMATIONITERATION_LISTENER); } else if (eventType == EventTypeNames::webkitTransitionEnd || eventType == EventTypeNames::transitionend) { addListenerType(TRANSITIONEND_LISTENER); } else if (eventType == EventTypeNames::beforeload) { if (m_frame && m_frame->script().shouldBypassMainWorldContentSecurityPolicy()) { UseCounter::count(*this, UseCounter::BeforeLoadEventInIsolatedWorld); } else { UseCounter::count(*this, UseCounter::BeforeLoadEvent); } addListenerType(BEFORELOAD_LISTENER); } else if (eventType == EventTypeNames::scroll) { addListenerType(SCROLL_LISTENER); } else if (eventType == EventTypeNames::DOMFocusIn || eventType == EventTypeNames::DOMFocusOut) { UseCounter::count(*this, UseCounter::DOMFocusInOutEvent); } } CSSStyleDeclaration* Document::getOverrideStyle(Element*, const String&) { return 0; } HTMLFrameOwnerElement* Document::ownerElement() const { if (!frame()) return 0; return frame()->ownerElement(); } String Document::cookie(ExceptionState& exceptionState) const { if (settings() && !settings()->cookieEnabled()) return String(); // FIXME: The HTML5 DOM spec states that this attribute can raise an // InvalidStateError exception on getting if the Document has no // browsing context. if (!securityOrigin()->canAccessCookies()) { if (isSandboxed(SandboxOrigin)) exceptionState.throwSecurityError("The document is sandboxed and lacks the 'allow-same-origin' flag."); else if (url().protocolIs("data")) exceptionState.throwSecurityError("Cookies are disabled inside 'data:' URLs."); else exceptionState.throwSecurityError("Access is denied for this document."); return String(); } KURL cookieURL = this->cookieURL(); if (cookieURL.isEmpty()) return String(); return cookies(this, cookieURL); } void Document::setCookie(const String& value, ExceptionState& exceptionState) { if (settings() && !settings()->cookieEnabled()) return; // FIXME: The HTML5 DOM spec states that this attribute can raise an // InvalidStateError exception on setting if the Document has no // browsing context. if (!securityOrigin()->canAccessCookies()) { if (isSandboxed(SandboxOrigin)) exceptionState.throwSecurityError("The document is sandboxed and lacks the 'allow-same-origin' flag."); else if (url().protocolIs("data")) exceptionState.throwSecurityError("Cookies are disabled inside 'data:' URLs."); else exceptionState.throwSecurityError("Access is denied for this document."); return; } KURL cookieURL = this->cookieURL(); if (cookieURL.isEmpty()) return; setCookies(this, cookieURL, value); } const AtomicString& Document::referrer() const { if (loader()) return loader()->request().httpReferrer(); return nullAtom; } String Document::domain() const { return securityOrigin()->domain(); } void Document::setDomain(const String& newDomain, ExceptionState& exceptionState) { if (isSandboxed(SandboxDocumentDomain)) { exceptionState.throwSecurityError("Assignment is forbidden for sandboxed iframes."); return; } if (SchemeRegistry::isDomainRelaxationForbiddenForURLScheme(securityOrigin()->protocol())) { exceptionState.throwSecurityError("Assignment is forbidden for the '" + securityOrigin()->protocol() + "' scheme."); return; } if (newDomain.isEmpty()) { exceptionState.throwSecurityError("'" + newDomain + "' is an empty domain."); return; } OriginAccessEntry::IPAddressSetting ipAddressSetting = settings() && settings()->treatIPAddressAsDomain() ? OriginAccessEntry::TreatIPAddressAsDomain : OriginAccessEntry::TreatIPAddressAsIPAddress; OriginAccessEntry accessEntry(securityOrigin()->protocol(), newDomain, OriginAccessEntry::AllowSubdomains, ipAddressSetting); OriginAccessEntry::MatchResult result = accessEntry.matchesOrigin(*securityOrigin()); if (result == OriginAccessEntry::DoesNotMatchOrigin) { exceptionState.throwSecurityError("'" + newDomain + "' is not a suffix of '" + domain() + "'."); return; } if (result == OriginAccessEntry::MatchesOriginButIsPublicSuffix) { exceptionState.throwSecurityError("'" + newDomain + "' is a top-level domain."); return; } securityOrigin()->setDomainFromDOM(newDomain); if (m_frame) m_frame->script().updateSecurityOrigin(); } // http://www.whatwg.org/specs/web-apps/current-work/#dom-document-lastmodified String Document::lastModified() const { DateComponents date; bool foundDate = false; if (m_frame) { if (DocumentLoader* documentLoader = loader()) { const AtomicString& httpLastModified = documentLoader->response().httpHeaderField("Last-Modified"); if (!httpLastModified.isEmpty()) { date.setMillisecondsSinceEpochForDateTime(parseDate(httpLastModified)); foundDate = true; } } } // FIXME: If this document came from the file system, the HTML5 // specificiation tells us to read the last modification date from the file // system. if (!foundDate) date.setMillisecondsSinceEpochForDateTime(currentTimeMS()); return String::format("%02d/%02d/%04d %02d:%02d:%02d", date.month() + 1, date.monthDay(), date.fullYear(), date.hour(), date.minute(), date.second()); } const KURL& Document::firstPartyForCookies() const { return topDocument()->url(); } static bool isValidNameNonASCII(const LChar* characters, unsigned length) { if (!isValidNameStart(characters[0])) return false; for (unsigned i = 1; i < length; ++i) { if (!isValidNamePart(characters[i])) return false; } return true; } static bool isValidNameNonASCII(const UChar* characters, unsigned length) { unsigned i = 0; UChar32 c; U16_NEXT(characters, i, length, c) if (!isValidNameStart(c)) return false; while (i < length) { U16_NEXT(characters, i, length, c) if (!isValidNamePart(c)) return false; } return true; } template static inline bool isValidNameASCII(const CharType* characters, unsigned length) { CharType c = characters[0]; if (!(isASCIIAlpha(c) || c == ':' || c == '_')) return false; for (unsigned i = 1; i < length; ++i) { c = characters[i]; if (!(isASCIIAlphanumeric(c) || c == ':' || c == '_' || c == '-' || c == '.')) return false; } return true; } bool Document::isValidName(const String& name) { unsigned length = name.length(); if (!length) return false; if (name.is8Bit()) { const LChar* characters = name.characters8(); if (isValidNameASCII(characters, length)) return true; return isValidNameNonASCII(characters, length); } const UChar* characters = name.characters16(); if (isValidNameASCII(characters, length)) return true; return isValidNameNonASCII(characters, length); } template static bool parseQualifiedNameInternal(const AtomicString& qualifiedName, const CharType* characters, unsigned length, AtomicString& prefix, AtomicString& localName, ExceptionState& exceptionState) { bool nameStart = true; bool sawColon = false; int colonPos = 0; for (unsigned i = 0; i < length;) { UChar32 c; U16_NEXT(characters, i, length, c) if (c == ':') { if (sawColon) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return false; // multiple colons: not allowed } nameStart = true; sawColon = true; colonPos = i - 1; } else if (nameStart) { if (!isValidNameStart(c)) { exceptionState.throwUninformativeAndGenericDOMException(InvalidCharacterError); return false; } nameStart = false; } else { if (!isValidNamePart(c)) { exceptionState.throwUninformativeAndGenericDOMException(InvalidCharacterError); return false; } } } if (!sawColon) { prefix = nullAtom; localName = qualifiedName; } else { prefix = AtomicString(characters, colonPos); if (prefix.isEmpty()) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return false; } int prefixStart = colonPos + 1; localName = AtomicString(characters + prefixStart, length - prefixStart); } if (localName.isEmpty()) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return false; } return true; } bool Document::parseQualifiedName(const AtomicString& qualifiedName, AtomicString& prefix, AtomicString& localName, ExceptionState& exceptionState) { unsigned length = qualifiedName.length(); if (!length) { exceptionState.throwUninformativeAndGenericDOMException(InvalidCharacterError); return false; } if (qualifiedName.is8Bit()) return parseQualifiedNameInternal(qualifiedName, qualifiedName.characters8(), length, prefix, localName, exceptionState); return parseQualifiedNameInternal(qualifiedName, qualifiedName.characters16(), length, prefix, localName, exceptionState); } void Document::setEncodingData(const DocumentEncodingData& newData) { // It's possible for the encoding of the document to change while we're decoding // data. That can only occur while we're processing the portion of the // document. There isn't much user-visible content in the , but there is // the element. This function detects that situation and re-decodes the // document's title so that the user doesn't see an incorrectly decoded title // in the title bar. if (m_titleElement && encoding() != newData.encoding && !m_titleElement->firstElementChild() && encoding() == Latin1Encoding() && m_titleElement->textContent().containsOnlyLatin1()) { CString originalBytes = m_titleElement->textContent().latin1(); OwnPtr<TextCodec> codec = newTextCodec(newData.encoding); String correctlyDecodedTitle = codec->decode(originalBytes.data(), originalBytes.length(), true); m_titleElement->setTextContent(correctlyDecodedTitle); } m_encodingData = newData; } KURL Document::completeURL(const String& url, const KURL& baseURLOverride) const { // Always return a null URL when passed a null string. // FIXME: Should we change the KURL constructor to have this behavior? // See also [CSS]StyleSheet::completeURL(const String&) if (url.isNull()) return KURL(); const KURL* baseURLFromParent = 0; if (baseURLOverride.isEmpty() || baseURLOverride == blankURL()) { if (Document* parent = parentDocument()) baseURLFromParent = &parent->baseURL(); } const KURL& baseURL = baseURLFromParent ? *baseURLFromParent : baseURLOverride; if (!encoding().isValid()) return KURL(baseURL, url); return KURL(baseURL, url, encoding()); } KURL Document::completeURL(const String& url) const { return completeURL(url, m_baseURL); } // Support for Javascript execCommand, and related methods static Editor::Command command(Document* document, const String& commandName, bool userInterface = false) { Frame* frame = document->frame(); if (!frame || frame->document() != document) return Editor::Command(); document->updateStyleIfNeeded(); return frame->editor().command(commandName, userInterface ? CommandFromDOMWithUserInterface : CommandFromDOM); } bool Document::execCommand(const String& commandName, bool userInterface, const String& value) { return command(this, commandName, userInterface).execute(value); } bool Document::queryCommandEnabled(const String& commandName) { return command(this, commandName).isEnabled(); } bool Document::queryCommandIndeterm(const String& commandName) { return command(this, commandName).state() == MixedTriState; } bool Document::queryCommandState(const String& commandName) { return command(this, commandName).state() == TrueTriState; } bool Document::queryCommandSupported(const String& commandName) { return command(this, commandName).isSupported(); } String Document::queryCommandValue(const String& commandName) { return command(this, commandName).value(); } KURL Document::openSearchDescriptionURL() { static const char openSearchMIMEType[] = "application/opensearchdescription+xml"; static const char openSearchRelation[] = "search"; // FIXME: Why do only top-level frames have openSearchDescriptionURLs? if (!frame() || frame()->tree().parent()) return KURL(); // FIXME: Why do we need to wait for FrameStateComplete? if (frame()->loader().state() != FrameStateComplete) return KURL(); if (!head()) return KURL(); RefPtr<HTMLCollection> children = head()->children(); for (unsigned i = 0; Node* child = children->item(i); i++) { if (!child->hasTagName(linkTag)) continue; HTMLLinkElement* linkElement = toHTMLLinkElement(child); if (!equalIgnoringCase(linkElement->type(), openSearchMIMEType) || !equalIgnoringCase(linkElement->rel(), openSearchRelation)) continue; if (linkElement->href().isEmpty()) continue; return linkElement->href(); } return KURL(); } void Document::pushCurrentScript(PassRefPtr<HTMLScriptElement> newCurrentScript) { ASSERT(newCurrentScript); m_currentScriptStack.append(newCurrentScript); } void Document::popCurrentScript() { ASSERT(!m_currentScriptStack.isEmpty()); m_currentScriptStack.removeLast(); } void Document::applyXSLTransform(ProcessingInstruction* pi) { ASSERT(!pi->isLoading()); UseCounter::count(*this, UseCounter::XSLProcessingInstruction); RefPtr<XSLTProcessor> processor = XSLTProcessor::create(); processor->setXSLStyleSheet(toXSLStyleSheet(pi->sheet())); String resultMIMEType; String newSource; String resultEncoding; if (!processor->transformToString(this, resultMIMEType, newSource, resultEncoding)) return; // FIXME: If the transform failed we should probably report an error (like Mozilla does). Frame* ownerFrame = frame(); processor->createDocumentFromSource(newSource, resultEncoding, resultMIMEType, this, ownerFrame); InspectorInstrumentation::frameDocumentUpdated(ownerFrame); } void Document::setTransformSource(PassOwnPtr<TransformSource> source) { m_transformSource = source; } void Document::setDesignMode(InheritedBool value) { m_designMode = value; for (Frame* frame = m_frame; frame && frame->document(); frame = frame->tree().traverseNext(m_frame)) frame->document()->setNeedsStyleRecalc(); } Document::InheritedBool Document::getDesignMode() const { return m_designMode; } bool Document::inDesignMode() const { for (const Document* d = this; d; d = d->parentDocument()) { if (d->m_designMode != inherit) return d->m_designMode; } return false; } Document* Document::parentDocument() const { if (!m_frame) return 0; Frame* parent = m_frame->tree().parent(); if (!parent) return 0; return parent->document(); } Document* Document::topDocument() const { Document* doc = const_cast<Document*>(this); Element* element; while ((element = doc->ownerElement())) doc = &element->document(); return doc; } WeakPtr<Document> Document::contextDocument() { if (m_contextDocument) return m_contextDocument; if (m_frame) return m_weakFactory.createWeakPtr(); return WeakPtr<Document>(0); } PassRefPtr<Attr> Document::createAttribute(const AtomicString& name, ExceptionState& exceptionState) { return createAttributeNS(nullAtom, name, exceptionState, true); } PassRefPtr<Attr> Document::createAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState, bool shouldIgnoreNamespaceChecks) { AtomicString prefix, localName; if (!parseQualifiedName(qualifiedName, prefix, localName, exceptionState)) return 0; QualifiedName qName(prefix, localName, namespaceURI); if (!shouldIgnoreNamespaceChecks && !hasValidNamespaceForAttributes(qName)) { exceptionState.throwUninformativeAndGenericDOMException(NamespaceError); return 0; } return Attr::create(*this, qName, emptyString()); } const SVGDocumentExtensions* Document::svgExtensions() { return m_svgExtensions.get(); } SVGDocumentExtensions* Document::accessSVGExtensions() { if (!m_svgExtensions) m_svgExtensions = adoptPtr(new SVGDocumentExtensions(this)); return m_svgExtensions.get(); } bool Document::hasSVGRootNode() const { return documentElement() && documentElement()->hasTagName(SVGNames::svgTag); } PassRefPtr<HTMLCollection> Document::ensureCachedCollection(CollectionType type) { return ensureRareData().ensureNodeLists().addCacheWithAtomicName<HTMLCollection>(this, type); } PassRefPtr<HTMLCollection> Document::images() { return ensureCachedCollection(DocImages); } PassRefPtr<HTMLCollection> Document::applets() { return ensureCachedCollection(DocApplets); } PassRefPtr<HTMLCollection> Document::embeds() { return ensureCachedCollection(DocEmbeds); } PassRefPtr<HTMLCollection> Document::scripts() { return ensureCachedCollection(DocScripts); } PassRefPtr<HTMLCollection> Document::links() { return ensureCachedCollection(DocLinks); } PassRefPtr<HTMLCollection> Document::forms() { return ensureCachedCollection(DocForms); } PassRefPtr<HTMLCollection> Document::anchors() { return ensureCachedCollection(DocAnchors); } PassRefPtr<HTMLCollection> Document::allForBinding() { UseCounter::count(*this, UseCounter::DocumentAll); return all(); } PassRefPtr<HTMLCollection> Document::all() { return ensureRareData().ensureNodeLists().addCacheWithAtomicName<HTMLAllCollection>(this, DocAll); } PassRefPtr<HTMLCollection> Document::windowNamedItems(const AtomicString& name) { return ensureRareData().ensureNodeLists().addCacheWithAtomicName<HTMLNameCollection>(this, WindowNamedItems, name); } PassRefPtr<HTMLCollection> Document::documentNamedItems(const AtomicString& name) { return ensureRareData().ensureNodeLists().addCacheWithAtomicName<HTMLNameCollection>(this, DocumentNamedItems, name); } void Document::finishedParsing() { ASSERT(!scriptableDocumentParser() || !m_parser->isParsing()); ASSERT(!scriptableDocumentParser() || m_readyState != Loading); setParsing(false); if (!m_documentTiming.domContentLoadedEventStart) m_documentTiming.domContentLoadedEventStart = monotonicallyIncreasingTime(); dispatchEvent(Event::createBubble(EventTypeNames::DOMContentLoaded)); if (!m_documentTiming.domContentLoadedEventEnd) m_documentTiming.domContentLoadedEventEnd = monotonicallyIncreasingTime(); // The loader's finishedParsing() method may invoke script that causes this object to // be dereferenced (when this document is in an iframe and the onload causes the iframe's src to change). // Keep it alive until we are done. RefPtr<Document> protect(this); if (RefPtr<Frame> f = frame()) { // FrameLoader::finishedParsing() might end up calling Document::implicitClose() if all // resource loads are complete. HTMLObjectElements can start loading their resources from // post attach callbacks triggered by recalcStyle(). This means if we parse out an <object> // tag and then reach the end of the document without updating styles, we might not have yet // started the resource load and might fire the window load event too early. To avoid this // we force the styles to be up to date before calling FrameLoader::finishedParsing(). // See https://bugs.webkit.org/show_bug.cgi?id=36864 starting around comment 35. updateStyleIfNeeded(); f->loader().finishedParsing(); InspectorInstrumentation::domContentLoadedEventFired(f.get()); } // Schedule dropping of the DocumentSharedObjectPool. We keep it alive for a while after parsing finishes // so that dynamically inserted content can also benefit from sharing optimizations. // Note that we don't refresh the timer on pool access since that could lead to huge caches being kept // alive indefinitely by something innocuous like JS setting .innerHTML repeatedly on a timer. static const int timeToKeepSharedObjectPoolAliveAfterParsingFinishedInSeconds = 10; m_sharedObjectPoolClearTimer.startOneShot(timeToKeepSharedObjectPoolAliveAfterParsingFinishedInSeconds); // Parser should have picked up all preloads by now m_fetcher->clearPreloads(); if (m_import) m_import->didFinishParsing(); } void Document::sharedObjectPoolClearTimerFired(Timer<Document>*) { m_sharedObjectPool.clear(); } Vector<IconURL> Document::iconURLs(int iconTypesMask) { IconURL firstFavicon; IconURL firstTouchIcon; IconURL firstTouchPrecomposedIcon; Vector<IconURL> secondaryIcons; // Start from the last child node so that icons seen later take precedence as required by the spec. RefPtr<HTMLCollection> children = head() ? head()->children() : 0; unsigned length = children ? children->length() : 0; for (unsigned i = 0; i < length; i++) { Node* child = children->item(i); if (!child->hasTagName(linkTag)) continue; HTMLLinkElement* linkElement = toHTMLLinkElement(child); if (!(linkElement->iconType() & iconTypesMask)) continue; if (linkElement->href().isEmpty()) continue; #if !ENABLE(TOUCH_ICON_LOADING) if (linkElement->iconType() != Favicon) continue; #endif IconURL newURL(linkElement->href(), linkElement->iconSizes(), linkElement->type(), linkElement->iconType()); if (linkElement->iconType() == Favicon) { if (firstFavicon.m_iconType != InvalidIcon) secondaryIcons.append(firstFavicon); firstFavicon = newURL; } else if (linkElement->iconType() == TouchIcon) { if (firstTouchIcon.m_iconType != InvalidIcon) secondaryIcons.append(firstTouchIcon); firstTouchIcon = newURL; } else if (linkElement->iconType() == TouchPrecomposedIcon) { if (firstTouchPrecomposedIcon.m_iconType != InvalidIcon) secondaryIcons.append(firstTouchPrecomposedIcon); firstTouchPrecomposedIcon = newURL; } else { ASSERT_NOT_REACHED(); } } Vector<IconURL> iconURLs; if (firstFavicon.m_iconType != InvalidIcon) iconURLs.append(firstFavicon); else if (m_url.protocolIsInHTTPFamily() && iconTypesMask & Favicon) iconURLs.append(IconURL::defaultFavicon(m_url)); if (firstTouchIcon.m_iconType != InvalidIcon) iconURLs.append(firstTouchIcon); if (firstTouchPrecomposedIcon.m_iconType != InvalidIcon) iconURLs.append(firstTouchPrecomposedIcon); for (int i = secondaryIcons.size() - 1; i >= 0; --i) iconURLs.append(secondaryIcons[i]); return iconURLs; } void Document::setUseSecureKeyboardEntryWhenActive(bool usesSecureKeyboard) { if (m_useSecureKeyboardEntryWhenActive == usesSecureKeyboard) return; m_useSecureKeyboardEntryWhenActive = usesSecureKeyboard; m_frame->selection().updateSecureKeyboardEntryIfActive(); } bool Document::useSecureKeyboardEntryWhenActive() const { return m_useSecureKeyboardEntryWhenActive; } void Document::initSecurityContext() { initSecurityContext(DocumentInit(m_url, m_frame, contextDocument(), m_import)); } void Document::initSecurityContext(const DocumentInit& initializer) { if (haveInitializedSecurityOrigin()) { ASSERT(securityOrigin()); return; } if (!initializer.hasSecurityContext()) { // No source for a security context. // This can occur via document.implementation.createDocument(). m_cookieURL = KURL(ParsedURLString, emptyString()); setSecurityOrigin(SecurityOrigin::createUnique()); setContentSecurityPolicy(ContentSecurityPolicy::create(this)); return; } // In the common case, create the security context from the currently // loading URL with a fresh content security policy. m_cookieURL = m_url; enforceSandboxFlags(initializer.sandboxFlags()); setSecurityOrigin(isSandboxed(SandboxOrigin) ? SecurityOrigin::createUnique() : SecurityOrigin::create(m_url)); setContentSecurityPolicy(ContentSecurityPolicy::create(this)); if (Settings* settings = initializer.settings()) { if (!settings->webSecurityEnabled()) { // Web security is turned off. We should let this document access every other document. This is used primary by testing // harnesses for web sites. securityOrigin()->grantUniversalAccess(); } else if (securityOrigin()->isLocal()) { if (settings->allowUniversalAccessFromFileURLs()) { // Some clients want local URLs to have universal access, but that setting is dangerous for other clients. securityOrigin()->grantUniversalAccess(); } else if (!settings->allowFileAccessFromFileURLs()) { // Some clients want local URLs to have even tighter restrictions by default, and not be able to access other local files. // FIXME 81578: The naming of this is confusing. Files with restricted access to other local files // still can have other privileges that can be remembered, thereby not making them unique origins. securityOrigin()->enforceFilePathSeparation(); } } } if (initializer.shouldTreatURLAsSrcdocDocument()) { m_isSrcdocDocument = true; setBaseURLOverride(initializer.parentBaseURL()); } // FIXME: What happens if we inherit the security origin? This check may need to be later. // <iframe seamless src="about:blank"> likely won't work as-is. m_mayDisplaySeamlesslyWithParent = initializer.isSeamlessAllowedFor(this); if (!shouldInheritSecurityOriginFromOwner(m_url)) return; // If we do not obtain a meaningful origin from the URL, then we try to // find one via the frame hierarchy. if (!initializer.owner()) { didFailToInitializeSecurityOrigin(); return; } if (isSandboxed(SandboxOrigin)) { // If we're supposed to inherit our security origin from our owner, // but we're also sandboxed, the only thing we inherit is the ability // to load local resources. This lets about:blank iframes in file:// // URL documents load images and other resources from the file system. if (initializer.owner()->securityOrigin()->canLoadLocalResources()) securityOrigin()->grantLoadLocalResources(); return; } m_cookieURL = initializer.owner()->cookieURL(); // We alias the SecurityOrigins to match Firefox, see Bug 15313 // https://bugs.webkit.org/show_bug.cgi?id=15313 setSecurityOrigin(initializer.owner()->securityOrigin()); } void Document::initContentSecurityPolicy(const ContentSecurityPolicyResponseHeaders& headers) { if (m_frame && m_frame->tree().parent() && (shouldInheritSecurityOriginFromOwner(m_url) || isPluginDocument())) contentSecurityPolicy()->copyStateFrom(m_frame->tree().parent()->document()->contentSecurityPolicy()); contentSecurityPolicy()->didReceiveHeaders(headers); } bool Document::allowInlineEventHandlers(Node* node, EventListener* listener, const String& contextURL, const WTF::OrdinalNumber& contextLine) { if (!contentSecurityPolicy()->allowInlineEventHandlers(contextURL, contextLine)) return false; // HTML says that inline script needs browsing context to create its execution environment. // http://www.whatwg.org/specs/web-apps/current-work/multipage/webappapis.html#event-handler-attributes // Also, if the listening node came from other document, which happens on context-less event dispatching, // we also need to ask the owner document of the node. if (!m_frame) return false; if (!m_frame->script().canExecuteScripts(NotAboutToExecuteScript)) return false; if (node && node->document() != this && !node->document().allowInlineEventHandlers(node, listener, contextURL, contextLine)) return false; return true; } bool Document::allowExecutingScripts(Node* node) { // FIXME: Eventually we'd like to evaluate scripts which are inserted into a // viewless document but this'll do for now. // See http://bugs.webkit.org/show_bug.cgi?id=5727 if (!frame() && !import()) return false; if (!node->document().frame() && !node->document().import()) return false; if (!contextDocument().get()->frame()->script().canExecuteScripts(AboutToExecuteScript)) return false; return true; } void Document::updateSecurityOrigin(PassRefPtr<SecurityOrigin> origin) { setSecurityOrigin(origin); didUpdateSecurityOrigin(); } void Document::didUpdateSecurityOrigin() { if (!m_frame) return; m_frame->script().updateSecurityOrigin(); } bool Document::isContextThread() const { return isMainThread(); } void Document::updateFocusAppearanceSoon(bool restorePreviousSelection) { m_updateFocusAppearanceRestoresSelection = restorePreviousSelection; if (!m_updateFocusAppearanceTimer.isActive()) m_updateFocusAppearanceTimer.startOneShot(0); } void Document::cancelFocusAppearanceUpdate() { m_updateFocusAppearanceTimer.stop(); } void Document::updateFocusAppearanceTimerFired(Timer<Document>*) { Element* element = focusedElement(); if (!element) return; updateLayout(); if (element->isFocusable()) element->updateFocusAppearance(m_updateFocusAppearanceRestoresSelection); } void Document::attachRange(Range* range) { ASSERT(!m_ranges.contains(range)); m_ranges.add(range); } void Document::detachRange(Range* range) { // We don't ASSERT m_ranges.contains(range) to allow us to call this // unconditionally to fix: https://bugs.webkit.org/show_bug.cgi?id=26044 m_ranges.remove(range); } CanvasRenderingContext* Document::getCSSCanvasContext(const String& type, const String& name, int width, int height) { HTMLCanvasElement* element = getCSSCanvasElement(name); if (!element) return 0; element->setSize(IntSize(width, height)); return element->getContext(type); } HTMLCanvasElement* Document::getCSSCanvasElement(const String& name) { RefPtr<HTMLCanvasElement>& element = m_cssCanvasElements.add(name, 0).iterator->value; if (!element) { element = HTMLCanvasElement::create(*this); element->setAccelerationDisabled(true); } return element.get(); } void Document::initDNSPrefetch() { Settings* settings = this->settings(); m_haveExplicitlyDisabledDNSPrefetch = false; m_isDNSPrefetchEnabled = settings && settings->dnsPrefetchingEnabled() && securityOrigin()->protocol() == "http"; // Inherit DNS prefetch opt-out from parent frame if (Document* parent = parentDocument()) { if (!parent->isDNSPrefetchEnabled()) m_isDNSPrefetchEnabled = false; } } void Document::parseDNSPrefetchControlHeader(const String& dnsPrefetchControl) { if (equalIgnoringCase(dnsPrefetchControl, "on") && !m_haveExplicitlyDisabledDNSPrefetch) { m_isDNSPrefetchEnabled = true; return; } m_isDNSPrefetchEnabled = false; m_haveExplicitlyDisabledDNSPrefetch = true; } void Document::reportBlockedScriptExecutionToInspector(const String& directiveText) { InspectorInstrumentation::scriptExecutionBlockedByCSP(this, directiveText); } void Document::addMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState* state) { internalAddMessage(source, level, message, sourceURL, lineNumber, 0, state); } void Document::internalAddMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, PassRefPtr<ScriptCallStack> callStack, ScriptState* state) { if (!isContextThread()) { m_taskRunner->postTask(AddConsoleMessageTask::create(source, level, message)); return; } Page* page = this->page(); if (!page) return; String messageURL = sourceURL; if (!state && sourceURL.isNull() && !lineNumber) { messageURL = url().string(); if (parsing() && !isInDocumentWrite() && scriptableDocumentParser()) { ScriptableDocumentParser* parser = scriptableDocumentParser(); if (!parser->isWaitingForScripts() && !parser->isExecutingScript()) lineNumber = parser->lineNumber().oneBasedInt(); } } page->console().addMessage(source, level, message, messageURL, lineNumber, 0, callStack, state, 0); } void Document::addConsoleMessageWithRequestIdentifier(MessageSource source, MessageLevel level, const String& message, unsigned long requestIdentifier) { if (!isContextThread()) { m_taskRunner->postTask(AddConsoleMessageTask::create(source, level, message)); return; } if (Page* page = this->page()) page->console().addMessage(source, level, message, String(), 0, 0, 0, 0, requestIdentifier); } // FIXME(crbug.com/305497): This should be removed after ExecutionContext-DOMWindow migration. void Document::postTask(PassOwnPtr<ExecutionContextTask> task) { m_taskRunner->postTask(task); } void Document::tasksWereSuspended() { scriptRunner()->suspend(); if (m_parser) m_parser->suspendScheduledTasks(); if (m_scriptedAnimationController) m_scriptedAnimationController->suspend(); } void Document::tasksWereResumed() { scriptRunner()->resume(); if (m_parser) m_parser->resumeScheduledTasks(); if (m_scriptedAnimationController) m_scriptedAnimationController->resume(); } // FIXME: suspendScheduledTasks(), resumeScheduledTasks(), tasksNeedSuspension() // should be moved to DOMWindow once it inherits ExecutionContext void Document::suspendScheduledTasks() { ExecutionContext::suspendScheduledTasks(); m_taskRunner->suspend(); } void Document::resumeScheduledTasks() { ExecutionContext::resumeScheduledTasks(); m_taskRunner->resume(); } bool Document::tasksNeedSuspension() { Page* page = this->page(); return page && page->defersLoading(); } void Document::addToTopLayer(Element* element, const Element* before) { if (element->isInTopLayer()) return; ASSERT(!m_topLayerElements.contains(element)); ASSERT(!before || m_topLayerElements.contains(before)); if (before) { size_t beforePosition = m_topLayerElements.find(before); m_topLayerElements.insert(beforePosition, element); } else { m_topLayerElements.append(element); } element->setIsInTopLayer(true); } void Document::removeFromTopLayer(Element* element) { if (!element->isInTopLayer()) return; size_t position = m_topLayerElements.find(element); ASSERT(position != kNotFound); m_topLayerElements.remove(position); element->setIsInTopLayer(false); } HTMLDialogElement* Document::activeModalDialog() const { if (m_topLayerElements.isEmpty()) return 0; return toHTMLDialogElement(m_topLayerElements.last().get()); } void Document::webkitExitPointerLock() { if (!page()) return; if (Element* target = page()->pointerLockController().element()) { if (target->document() != this) return; } page()->pointerLockController().requestPointerUnlock(); } Element* Document::webkitPointerLockElement() const { if (!page() || page()->pointerLockController().lockPending()) return 0; if (Element* element = page()->pointerLockController().element()) { if (element->document() == this) return element; } return 0; } void Document::decrementLoadEventDelayCount() { ASSERT(m_loadEventDelayCount); --m_loadEventDelayCount; if (frame() && !m_loadEventDelayCount && !m_loadEventDelayTimer.isActive()) m_loadEventDelayTimer.startOneShot(0); } void Document::loadEventDelayTimerFired(Timer<Document>*) { if (frame()) frame()->loader().checkCompleted(); } ScriptedAnimationController& Document::ensureScriptedAnimationController() { if (!m_scriptedAnimationController) { m_scriptedAnimationController = ScriptedAnimationController::create(this); // We need to make sure that we don't start up the animation controller on a background tab, for example. if (!page()) m_scriptedAnimationController->suspend(); } return *m_scriptedAnimationController; } int Document::requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback> callback) { return ensureScriptedAnimationController().registerCallback(callback); } void Document::cancelAnimationFrame(int id) { if (!m_scriptedAnimationController) return; m_scriptedAnimationController->cancelCallback(id); } void Document::serviceScriptedAnimations(double monotonicAnimationStartTime) { if (!m_scriptedAnimationController) return; m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationStartTime); } PassRefPtr<Touch> Document::createTouch(DOMWindow* window, EventTarget* target, int identifier, int pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY, float rotationAngle, float force) const { // FIXME: It's not clear from the documentation at // http://developer.apple.com/library/safari/#documentation/UserExperience/Reference/DocumentAdditionsReference/DocumentAdditions/DocumentAdditions.html // when this method should throw and nor is it by inspection of iOS behavior. It would be nice to verify any cases where it throws under iOS // and implement them here. See https://bugs.webkit.org/show_bug.cgi?id=47819 Frame* frame = window ? window->frame() : this->frame(); return Touch::create(frame, target, identifier, screenX, screenY, pageX, pageY, radiusX, radiusY, rotationAngle, force); } PassRefPtr<TouchList> Document::createTouchList(Vector<RefPtr<Touch> >& touches) const { return TouchList::create(touches); } void Document::didAddTouchEventHandler(Node* handler) { if (!m_touchEventTargets.get()) m_touchEventTargets = adoptPtr(new TouchEventTargetSet); m_touchEventTargets->add(handler); if (Document* parent = parentDocument()) { parent->didAddTouchEventHandler(this); return; } if (Page* page = this->page()) { if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator()) scrollingCoordinator->touchEventTargetRectsDidChange(this); if (m_touchEventTargets->size() == 1) page->chrome().client().needTouchEvents(true); } } void Document::didRemoveTouchEventHandler(Node* handler) { if (!m_touchEventTargets.get()) return; ASSERT(m_touchEventTargets->contains(handler)); m_touchEventTargets->remove(handler); if (Document* parent = parentDocument()) { parent->didRemoveTouchEventHandler(this); return; } Page* page = this->page(); if (!page) return; if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator()) scrollingCoordinator->touchEventTargetRectsDidChange(this); if (m_touchEventTargets->size()) return; for (const Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) { if (frame->document() && frame->document()->hasTouchEventHandlers()) return; } page->chrome().client().needTouchEvents(false); } void Document::didRemoveEventTargetNode(Node* handler) { if (m_touchEventTargets && !m_touchEventTargets->isEmpty()) { if (handler == this) m_touchEventTargets->clear(); else m_touchEventTargets->removeAll(handler); if (m_touchEventTargets->isEmpty() && parentDocument()) parentDocument()->didRemoveEventTargetNode(this); } } void Document::resetLastHandledUserGestureTimestamp() { m_lastHandledUserGestureTimestamp = currentTime(); } HTMLIFrameElement* Document::seamlessParentIFrame() const { if (!shouldDisplaySeamlesslyWithParent()) return 0; return toHTMLIFrameElement(this->ownerElement()); } bool Document::shouldDisplaySeamlesslyWithParent() const { if (!RuntimeEnabledFeatures::seamlessIFramesEnabled()) return false; HTMLFrameOwnerElement* ownerElement = this->ownerElement(); if (!ownerElement) return false; return m_mayDisplaySeamlesslyWithParent && ownerElement->hasTagName(iframeTag) && ownerElement->fastHasAttribute(seamlessAttr); } DocumentLoader* Document::loader() const { if (!m_frame) return 0; DocumentLoader* loader = m_frame->loader().documentLoader(); if (!loader) return 0; if (m_frame->document() != this) return 0; return loader; } IntSize Document::initialViewportSize() const { if (!view()) return IntSize(); return view()->unscaledVisibleContentSize(ScrollableArea::IncludeScrollbars); } Node* eventTargetNodeForDocument(Document* doc) { if (!doc) return 0; Node* node = doc->focusedElement(); if (!node && doc->isPluginDocument()) { PluginDocument* pluginDocument = toPluginDocument(doc); node = pluginDocument->pluginNode(); } if (!node && doc->isHTMLDocument()) node = doc->body(); if (!node) node = doc->documentElement(); return node; } void Document::adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>& quads, RenderObject& renderer) { if (!view()) return; LayoutRect visibleContentRect = view()->visibleContentRect(); for (size_t i = 0; i < quads.size(); ++i) { quads[i].move(-visibleContentRect.x(), -visibleContentRect.y()); adjustFloatQuadForAbsoluteZoom(quads[i], renderer); } } void Document::adjustFloatRectForScrollAndAbsoluteZoom(FloatRect& rect, RenderObject& renderer) { if (!view()) return; LayoutRect visibleContentRect = view()->visibleContentRect(); rect.move(-visibleContentRect.x(), -visibleContentRect.y()); adjustFloatRectForAbsoluteZoom(rect, renderer); } bool Document::hasActiveParser() { return m_activeParserCount || (m_parser && m_parser->processingData()); } void Document::decrementActiveParserCount() { --m_activeParserCount; if (!frame()) return; // FIXME: This should always be enabled, but it seems to cause // http/tests/security/feed-urls-from-remote.html to timeout on Mac WK1 // see http://webkit.org/b/110554 and http://webkit.org/b/110401 loader()->checkLoadComplete(); frame()->loader().checkLoadComplete(); } void Document::setContextFeatures(PassRefPtr<ContextFeatures> features) { m_contextFeatures = features; } static RenderObject* nearestCommonHoverAncestor(RenderObject* obj1, RenderObject* obj2) { if (!obj1 || !obj2) return 0; for (RenderObject* currObj1 = obj1; currObj1; currObj1 = currObj1->hoverAncestor()) { for (RenderObject* currObj2 = obj2; currObj2; currObj2 = currObj2->hoverAncestor()) { if (currObj1 == currObj2) return currObj1; } } return 0; } void Document::updateHoverActiveState(const HitTestRequest& request, Element* innerElement, const PlatformMouseEvent* event) { ASSERT(!request.readOnly()); if (request.active() && m_frame) m_frame->eventHandler().notifyElementActivated(); Element* innerElementInDocument = innerElement; while (innerElementInDocument && innerElementInDocument->document() != this) { innerElementInDocument->document().updateHoverActiveState(request, innerElementInDocument, event); innerElementInDocument = innerElementInDocument->document().ownerElement(); } Element* oldActiveElement = activeElement(); if (oldActiveElement && !request.active()) { // We are clearing the :active chain because the mouse has been released. for (RenderObject* curr = oldActiveElement->renderer(); curr; curr = curr->parent()) { if (curr->node()) { ASSERT(!curr->node()->isTextNode()); curr->node()->setActive(false); m_userActionElements.setInActiveChain(curr->node(), false); } } setActiveElement(0); } else { Element* newActiveElement = innerElementInDocument; if (!oldActiveElement && newActiveElement && request.active() && !request.touchMove()) { // We are setting the :active chain and freezing it. If future moves happen, they // will need to reference this chain. for (RenderObject* curr = newActiveElement->renderer(); curr; curr = curr->parent()) { if (curr->node() && !curr->isText()) m_userActionElements.setInActiveChain(curr->node(), true); } setActiveElement(newActiveElement); } } // If the mouse has just been pressed, set :active on the chain. Those (and only those) // nodes should remain :active until the mouse is released. bool allowActiveChanges = !oldActiveElement && activeElement(); // If the mouse is down and if this is a mouse move event, we want to restrict changes in // :hover/:active to only apply to elements that are in the :active chain that we froze // at the time the mouse went down. bool mustBeInActiveChain = request.active() && request.move(); RefPtr<Node> oldHoverNode = hoverNode(); // A touch release does not set a new hover target; setting the element we're working with to 0 // will clear the chain of hovered elements all the way to the top of the tree. if (request.touchRelease()) innerElementInDocument = 0; // Check to see if the hovered node has changed. // If it hasn't, we do not need to do anything. Node* newHoverNode = innerElementInDocument; while (newHoverNode && !newHoverNode->renderer()) newHoverNode = newHoverNode->parentOrShadowHostNode(); // Update our current hover node. setHoverNode(newHoverNode); // We have two different objects. Fetch their renderers. RenderObject* oldHoverObj = oldHoverNode ? oldHoverNode->renderer() : 0; RenderObject* newHoverObj = newHoverNode ? newHoverNode->renderer() : 0; // Locate the common ancestor render object for the two renderers. RenderObject* ancestor = nearestCommonHoverAncestor(oldHoverObj, newHoverObj); RefPtr<Node> ancestorNode(ancestor ? ancestor->node() : 0); Vector<RefPtr<Node>, 32> nodesToRemoveFromChain; Vector<RefPtr<Node>, 32> nodesToAddToChain; if (oldHoverObj != newHoverObj) { // If the old hovered node is not nil but it's renderer is, it was probably detached as part of the :hover style // (for instance by setting display:none in the :hover pseudo-class). In this case, the old hovered element (and its ancestors) // must be updated, to ensure it's normal style is re-applied. if (oldHoverNode && !oldHoverObj) { for (Node* node = oldHoverNode.get(); node; node = node->parentNode()) { if (!mustBeInActiveChain || (node->isElementNode() && toElement(node)->inActiveChain())) nodesToRemoveFromChain.append(node); } } // The old hover path only needs to be cleared up to (and not including) the common ancestor; for (RenderObject* curr = oldHoverObj; curr && curr != ancestor; curr = curr->hoverAncestor()) { if (curr->node() && !curr->isText() && (!mustBeInActiveChain || curr->node()->inActiveChain())) nodesToRemoveFromChain.append(curr->node()); } } // Now set the hover state for our new object up to the root. for (RenderObject* curr = newHoverObj; curr; curr = curr->hoverAncestor()) { if (curr->node() && !curr->isText() && (!mustBeInActiveChain || curr->node()->inActiveChain())) nodesToAddToChain.append(curr->node()); } // mouseenter and mouseleave events do not bubble, so they are dispatched iff there is a capturing // event handler on an ancestor or a normal event handler on the element itself. This special // handling is necessary to avoid O(n^2) capturing event handler checks. We'll check the previously // hovered node's ancestor tree for 'mouseleave' handlers here, then check the newly hovered node's // ancestor tree for 'mouseenter' handlers after dispatching the 'mouseleave' events (as the handler // for 'mouseleave' might set a capturing 'mouseenter' handler, odd as that might be). bool ancestorHasCapturingMouseleaveListener = false; if (event && newHoverNode != oldHoverNode.get()) { for (Node* node = oldHoverNode.get(); node; node = node->parentOrShadowHostNode()) { if (node->hasCapturingEventListeners(EventTypeNames::mouseleave)) { ancestorHasCapturingMouseleaveListener = true; break; } } } size_t removeCount = nodesToRemoveFromChain.size(); for (size_t i = 0; i < removeCount; ++i) { nodesToRemoveFromChain[i]->setHovered(false); if (event && (ancestorHasCapturingMouseleaveListener || nodesToRemoveFromChain[i]->hasEventListeners(EventTypeNames::mouseleave))) nodesToRemoveFromChain[i]->dispatchMouseEvent(*event, EventTypeNames::mouseleave, 0, newHoverNode); } bool ancestorHasCapturingMouseenterListener = false; if (event && newHoverNode != oldHoverNode.get()) { for (Node* node = newHoverNode; node; node = node->parentOrShadowHostNode()) { if (node->hasCapturingEventListeners(EventTypeNames::mouseenter)) { ancestorHasCapturingMouseenterListener = true; break; } } } bool sawCommonAncestor = false; size_t addCount = nodesToAddToChain.size(); for (size_t i = 0; i < addCount; ++i) { // Elements past the common ancestor do not change hover state, but might change active state. if (ancestorNode && nodesToAddToChain[i] == ancestorNode) sawCommonAncestor = true; if (allowActiveChanges) nodesToAddToChain[i]->setActive(true); if (!sawCommonAncestor) { nodesToAddToChain[i]->setHovered(true); if (event && (ancestorHasCapturingMouseenterListener || nodesToAddToChain[i]->hasEventListeners(EventTypeNames::mouseenter))) nodesToAddToChain[i]->dispatchMouseEvent(*event, EventTypeNames::mouseenter, 0, oldHoverNode.get()); } } updateStyleIfNeeded(); } bool Document::haveStylesheetsLoaded() const { return m_styleEngine->haveStylesheetsLoaded(); } Locale& Document::getCachedLocale(const AtomicString& locale) { AtomicString localeKey = locale; if (locale.isEmpty() || !RuntimeEnabledFeatures::langAttributeAwareFormControlUIEnabled()) return Locale::defaultLocale(); LocaleIdentifierToLocaleMap::AddResult result = m_localeCache.add(localeKey, nullptr); if (result.isNewEntry) result.iterator->value = Locale::create(localeKey); return *(result.iterator->value); } Document& Document::ensureTemplateDocument() { if (const Document* document = templateDocument()) return *const_cast<Document*>(document); if (isHTMLDocument()) { DocumentInit init = DocumentInit::fromContext(contextDocument(), blankURL()); m_templateDocument = HTMLDocument::create(init); } else { m_templateDocument = Document::create(DocumentInit(blankURL())); } m_templateDocument->setTemplateDocumentHost(this); // balanced in dtor. return *m_templateDocument.get(); } void Document::didAssociateFormControl(Element* element) { if (!frame() || !frame()->page()) return; m_associatedFormControls.add(element); if (!m_didAssociateFormControlsTimer.isActive()) m_didAssociateFormControlsTimer.startOneShot(0); } void Document::didAssociateFormControlsTimerFired(Timer<Document>* timer) { ASSERT_UNUSED(timer, timer == &m_didAssociateFormControlsTimer); if (!frame() || !frame()->page()) return; Vector<RefPtr<Element> > associatedFormControls; copyToVector(m_associatedFormControls, associatedFormControls); frame()->page()->chrome().client().didAssociateFormControls(associatedFormControls); m_associatedFormControls.clear(); } float Document::devicePixelRatio() const { return m_frame ? m_frame->devicePixelRatio() : 1.0; } PassOwnPtr<LifecycleNotifier<Document> > Document::createLifecycleNotifier() { return DocumentLifecycleNotifier::create(this); } DocumentLifecycleNotifier& Document::lifecycleNotifier() { return static_cast<DocumentLifecycleNotifier&>(LifecycleContext<Document>::lifecycleNotifier()); } void Document::removedStyleSheet(StyleSheet* sheet, RecalcStyleTime when, StyleResolverUpdateMode updateMode) { // If we're in document teardown, then we don't need this notification of our sheet's removal. // styleResolverChanged() is needed even when the document is inactive so that // imported docuements (which is inactive) notifies the change to the master document. if (isActive()) styleEngine()->modifiedStyleSheet(sheet); styleResolverChanged(when, updateMode); } void Document::modifiedStyleSheet(StyleSheet* sheet, RecalcStyleTime when, StyleResolverUpdateMode updateMode) { // If we're in document teardown, then we don't need this notification of our sheet's removal. // styleResolverChanged() is needed even when the document is inactive so that // imported docuements (which is inactive) notifies the change to the master document. if (isActive()) styleEngine()->modifiedStyleSheet(sheet); styleResolverChanged(when, updateMode); } TextAutosizer* Document::textAutosizer() { if (!m_textAutosizer && !RuntimeEnabledFeatures::fastTextAutosizingEnabled()) m_textAutosizer = TextAutosizer::create(this); return m_textAutosizer.get(); } FastTextAutosizer* Document::fastTextAutosizer() { if (!m_fastTextAutosizer && RuntimeEnabledFeatures::fastTextAutosizingEnabled()) m_fastTextAutosizer = FastTextAutosizer::create(this); return m_fastTextAutosizer.get(); } } // namespace WebCore