| /* |
| * 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 "sky/engine/config.h" |
| #include "sky/engine/core/dom/Document.h" |
| |
| #include "gen/sky/core/HTMLElementFactory.h" |
| #include "gen/sky/platform/RuntimeEnabledFeatures.h" |
| #include "sky/engine/bindings/exception_messages.h" |
| #include "sky/engine/bindings/exception_state.h" |
| #include "sky/engine/bindings/exception_state_placeholder.h" |
| #include "sky/engine/core/animation/AnimationTimeline.h" |
| #include "sky/engine/core/animation/DocumentAnimations.h" |
| #include "sky/engine/core/css/CSSFontSelector.h" |
| #include "sky/engine/core/css/CSSStyleDeclaration.h" |
| #include "sky/engine/core/css/CSSStyleSheet.h" |
| #include "sky/engine/core/css/MediaQueryMatcher.h" |
| #include "sky/engine/core/css/StylePropertySet.h" |
| #include "sky/engine/core/css/StyleSheetContents.h" |
| #include "sky/engine/core/css/parser/BisonCSSParser.h" |
| #include "sky/engine/core/css/resolver/FontBuilder.h" |
| #include "sky/engine/core/css/resolver/StyleResolver.h" |
| #include "sky/engine/core/css/resolver/StyleResolverStats.h" |
| #include "sky/engine/core/dom/Attr.h" |
| #include "sky/engine/core/dom/DocumentFragment.h" |
| #include "sky/engine/core/dom/DocumentLifecycleNotifier.h" |
| #include "sky/engine/core/dom/DocumentLifecycleObserver.h" |
| #include "sky/engine/core/dom/DocumentMarkerController.h" |
| #include "sky/engine/core/dom/Element.h" |
| #include "sky/engine/core/dom/ElementDataCache.h" |
| #include "sky/engine/core/dom/ElementTraversal.h" |
| #include "sky/engine/core/dom/ExceptionCode.h" |
| #include "sky/engine/core/dom/MutationObserver.h" |
| #include "sky/engine/core/dom/NodeRareData.h" |
| #include "sky/engine/core/dom/NodeRenderStyle.h" |
| #include "sky/engine/core/dom/NodeRenderingTraversal.h" |
| #include "sky/engine/core/dom/NodeTraversal.h" |
| #include "sky/engine/core/dom/NodeWithIndex.h" |
| #include "sky/engine/core/dom/RequestAnimationFrameCallback.h" |
| #include "sky/engine/core/dom/ScriptedAnimationController.h" |
| #include "sky/engine/core/dom/SelectorQuery.h" |
| #include "sky/engine/core/dom/StaticNodeList.h" |
| #include "sky/engine/core/dom/StyleEngine.h" |
| #include "sky/engine/core/dom/Text.h" |
| #include "sky/engine/core/dom/custom/custom_element_registry.h" |
| #include "sky/engine/core/dom/shadow/ElementShadow.h" |
| #include "sky/engine/core/dom/shadow/ShadowRoot.h" |
| #include "sky/engine/core/editing/FrameSelection.h" |
| #include "sky/engine/core/editing/SpellChecker.h" |
| #include "sky/engine/core/events/Event.h" |
| #include "sky/engine/core/events/EventListener.h" |
| #include "sky/engine/core/events/HashChangeEvent.h" |
| #include "sky/engine/core/events/PageTransitionEvent.h" |
| #include "sky/engine/core/events/ScopedEventQueue.h" |
| #include "sky/engine/core/fetch/ResourceFetcher.h" |
| #include "sky/engine/core/frame/FrameConsole.h" |
| #include "sky/engine/core/frame/FrameHost.h" |
| #include "sky/engine/core/frame/FrameView.h" |
| #include "sky/engine/core/frame/LocalDOMWindow.h" |
| #include "sky/engine/core/frame/LocalFrame.h" |
| #include "sky/engine/core/frame/Settings.h" |
| #include "sky/engine/core/html/HTMLAnchorElement.h" |
| #include "sky/engine/core/html/HTMLScriptElement.h" |
| #include "sky/engine/core/html/HTMLStyleElement.h" |
| #include "sky/engine/core/html/HTMLTemplateElement.h" |
| #include "sky/engine/core/html/HTMLTitleElement.h" |
| #include "sky/engine/core/html/imports/HTMLImportChild.h" |
| #include "sky/engine/core/html/imports/HTMLImportLoader.h" |
| #include "sky/engine/core/html/imports/HTMLImportTreeRoot.h" |
| #include "sky/engine/core/html/imports/HTMLImportsController.h" |
| #include "sky/engine/core/html/parser/HTMLDocumentParser.h" |
| #include "sky/engine/core/html/parser/HTMLParserIdioms.h" |
| #include "sky/engine/core/html/parser/NestingLevelIncrementer.h" |
| #include "sky/engine/core/html/parser/TextResourceDecoder.h" |
| #include "sky/engine/core/inspector/ConsoleMessage.h" |
| #include "sky/engine/core/inspector/InspectorCounters.h" |
| #include "sky/engine/core/loader/FrameLoaderClient.h" |
| #include "sky/engine/core/loader/ImageLoader.h" |
| #include "sky/engine/core/page/ChromeClient.h" |
| #include "sky/engine/core/page/EventHandler.h" |
| #include "sky/engine/core/page/FocusController.h" |
| #include "sky/engine/core/page/Page.h" |
| #include "sky/engine/core/painting/PaintingTasks.h" |
| #include "sky/engine/core/painting/Picture.h" |
| #include "sky/engine/core/rendering/HitTestResult.h" |
| #include "sky/engine/core/rendering/RenderView.h" |
| #include "sky/engine/platform/DateComponents.h" |
| #include "sky/engine/platform/EventDispatchForbiddenScope.h" |
| #include "sky/engine/platform/Language.h" |
| #include "sky/engine/platform/Logging.h" |
| #include "sky/engine/platform/ScriptForbiddenScope.h" |
| #include "sky/engine/platform/TraceEvent.h" |
| #include "sky/engine/platform/network/HTTPParsers.h" |
| #include "sky/engine/platform/text/SegmentedString.h" |
| #include "sky/engine/public/platform/Platform.h" |
| #include "sky/engine/wtf/CurrentTime.h" |
| #include "sky/engine/wtf/DateMath.h" |
| #include "sky/engine/wtf/HashFunctions.h" |
| #include "sky/engine/wtf/MainThread.h" |
| #include "sky/engine/wtf/StdLibExtras.h" |
| #include "sky/engine/wtf/TemporaryChange.h" |
| #include "sky/engine/wtf/text/StringBuffer.h" |
| |
| using namespace WTF; |
| using namespace Unicode; |
| |
| namespace blink { |
| |
| // 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 acceptsEditingFocus(const Element& element) |
| { |
| ASSERT(element.hasEditableStyle()); |
| |
| return element.document().frame() && element.rootEditableElement(); |
| } |
| |
| #ifndef NDEBUG |
| typedef HashSet<RawPtr<Document> > WeakDocumentSet; |
| static WeakDocumentSet& liveDocumentSet() |
| { |
| DEFINE_STATIC_LOCAL(OwnPtr<WeakDocumentSet>, set, (adoptPtr(new WeakDocumentSet()))); |
| return *set; |
| } |
| #endif |
| |
| Document::Document(const DocumentInit& initializer) |
| : ContainerNode(0, CreateDocument) |
| , TreeScope(*this) |
| , m_module(nullptr) |
| , m_evaluateMediaQueriesOnStyleRecalc(false) |
| , m_frame(initializer.frame()) |
| , m_domWindow(m_frame ? m_frame->domWindow() : 0) |
| , m_importsController(initializer.importsController()) |
| , m_activeParserCount(0) |
| , m_resumeParserWaitingForResourcesTimer(this, &Document::resumeParserWaitingForResourcesTimerFired) |
| , m_clearFocusedElementTimer(this, &Document::clearFocusedElementTimerFired) |
| , m_listenerTypes(0) |
| , m_mutationObserverTypes(0) |
| , m_readyState(Complete) |
| , m_isParsing(false) |
| , m_containsValidityStyleRules(false) |
| , m_markers(adoptPtr(new DocumentMarkerController)) |
| , m_loadEventProgress(LoadEventNotRun) |
| , m_startTime(currentTime()) |
| , m_renderView(0) |
| #if !ENABLE(OILPAN) |
| , m_weakFactory(this) |
| #endif |
| , m_contextDocument(initializer.contextDocument()) |
| , m_loadEventDelayCount(0) |
| , m_loadEventDelayTimer(this, &Document::loadEventDelayTimerFired) |
| , m_didSetReferrerPolicy(false) |
| , m_referrerPolicy(ReferrerPolicyDefault) |
| , m_elementRegistry(initializer.elementRegistry()) |
| , m_elementDataCacheClearTimer(this, &Document::elementDataCacheClearTimerFired) |
| , m_timeline(AnimationTimeline::create(this)) |
| , m_templateDocumentHost(nullptr) |
| , m_hasViewportUnits(false) |
| , m_styleRecalcElementCounter(0) |
| , m_frameView(nullptr) |
| { |
| setClient(this); |
| |
| if (!m_elementRegistry) |
| m_elementRegistry = CustomElementRegistry::Create(); |
| |
| m_fetcher = ResourceFetcher::create(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()); |
| |
| InspectorCounters::incrementCounter(InspectorCounters::DocumentCounter); |
| |
| m_lifecycle.advanceTo(DocumentLifecycle::Inactive); |
| |
| #ifndef NDEBUG |
| liveDocumentSet().add(this); |
| #endif |
| } |
| |
| Document::~Document() |
| { |
| ASSERT(!renderView()); |
| ASSERT(!parentTreeScope()); |
| #if !ENABLE(OILPAN) |
| ASSERT(m_ranges.isEmpty()); |
| ASSERT(!hasGuardRefCount()); |
| |
| if (m_templateDocument) |
| m_templateDocument->m_templateDocumentHost = nullptr; // balanced in ensureTemplateDocument(). |
| |
| // FIXME: Oilpan: Not removing event listeners here also means that we do |
| // not notify the inspector instrumentation that the event listeners are |
| // gone. The Document and all the nodes in the document are gone, so maybe |
| // that is OK? |
| removeAllEventListenersRecursively(); |
| |
| // 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(); |
| #endif |
| |
| #if !ENABLE(OILPAN) |
| |
| if (m_importsController) |
| HTMLImportsController::removeFrom(*this); |
| |
| m_timeline->detachFromDocument(); |
| |
| if (m_elemSheet) |
| m_elemSheet->clearOwnerNode(); |
| |
| 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(); |
| |
| #ifndef NDEBUG |
| liveDocumentSet().remove(this); |
| #endif |
| #endif |
| |
| setClient(0); |
| |
| InspectorCounters::decrementCounter(InspectorCounters::DocumentCounter); |
| } |
| |
| #if !ENABLE(OILPAN) |
| 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_focusedElement = nullptr; |
| m_hoverNode = nullptr; |
| m_activeHoverElement = nullptr; |
| m_titleElement = nullptr; |
| m_userActionElements.documentDidRemoveLastRef(); |
| |
| detachParser(); |
| |
| m_elementRegistry.clear(); |
| |
| if (m_importsController) |
| HTMLImportsController::removeFrom(*this); |
| |
| // removeDetachedChildren() doesn't always unregister IDs, |
| // so tear down scope information upfront to avoid having stale references in the map. |
| destroyTreeScopeData(); |
| |
| removeDetachedChildren(); |
| |
| m_markers->clear(); |
| |
| // FIXME: consider using ActiveDOMObject. |
| if (m_scriptedAnimationController) |
| m_scriptedAnimationController->clearDocumentPointer(); |
| m_scriptedAnimationController.clear(); |
| |
| m_lifecycle.advanceTo(DocumentLifecycle::Disposed); |
| lifecycleNotifier().notifyDocumentWasDisposed(); |
| } |
| #endif |
| |
| 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() |
| { |
| m_evaluateMediaQueriesOnStyleRecalc = true; |
| // FIXME(sky): Actually update media queries from <style media>. |
| } |
| |
| Location* Document::location() const |
| { |
| if (!frame()) |
| return 0; |
| |
| return &domWindow()->location(); |
| } |
| |
| PassRefPtr<Element> Document::createElement(const AtomicString& name, ExceptionState& exceptionState) |
| { |
| if (!isValidName(name)) { |
| exceptionState.ThrowDOMException(InvalidCharacterError, "The tag name provided ('" + name + "') is not a valid name."); |
| return nullptr; |
| } |
| |
| return HTMLElementFactory::createElement(name, *this, false); |
| } |
| |
| PassRefPtr<Text> Document::createText(const String& text) |
| { |
| return Text::create(*this, text); |
| } |
| |
| void Document::registerElement(const AtomicString& name, PassRefPtr<DartValue> type, ExceptionState& es) |
| { |
| m_elementRegistry->RegisterElement(name, type); |
| } |
| |
| void Document::setImportsController(HTMLImportsController* controller) |
| { |
| ASSERT(!m_importsController || !controller); |
| m_importsController = controller; |
| } |
| |
| HTMLImportsController& Document::ensureImportsController() |
| { |
| if (!m_importsController) { |
| ASSERT(frame()); // The document should be the master. |
| HTMLImportsController::provideTo(*this); |
| } |
| return *m_importsController; |
| } |
| |
| HTMLImportLoader* Document::importLoader() const |
| { |
| if (!m_importsController) |
| return 0; |
| return m_importsController->loaderFor(*this); |
| } |
| |
| HTMLImport* Document::import() const |
| { |
| if (!m_importsController) |
| return 0; |
| if (HTMLImportLoader* loader = importLoader()) |
| return loader->firstImport(); |
| return m_importsController->root(); |
| } |
| |
| bool Document::haveImportsLoaded() const |
| { |
| if (!m_importsController) |
| return true; |
| return !m_importsController->shouldBlockScriptExecution(*this); |
| } |
| |
| LocalDOMWindow* Document::executingWindow() |
| { |
| if (LocalDOMWindow* owningWindow = domWindow()) |
| return owningWindow; |
| if (HTMLImportsController* import = this->importsController()) |
| return import->master()->domWindow(); |
| return 0; |
| } |
| |
| LocalFrame* Document::executingFrame() |
| { |
| LocalDOMWindow* window = executingWindow(); |
| if (!window) |
| return 0; |
| return window->frame(); |
| } |
| |
| PassRefPtr<DocumentFragment> Document::createDocumentFragment() |
| { |
| return DocumentFragment::create(*this); |
| } |
| |
| PassRefPtr<Text> Document::createEditingTextNode(const String& text) |
| { |
| return Text::createEditingText(*this, text); |
| } |
| |
| bool Document::importContainerNodeChildren(ContainerNode* oldContainerNode, PassRefPtr<ContainerNode> newContainerNode, ExceptionState& exceptionState) |
| { |
| for (Node* oldChild = oldContainerNode->firstChild(); oldChild; oldChild = oldChild->nextSibling()) { |
| RefPtr<Node> newChild = importNode(oldChild, true, exceptionState); |
| if (exceptionState.had_exception()) |
| return false; |
| newContainerNode->appendChild(newChild.release(), exceptionState); |
| if (exceptionState.had_exception()) |
| return false; |
| } |
| |
| return true; |
| } |
| |
| PassRefPtr<Node> Document::importNode(Node* importedNode, bool deep, ExceptionState& exceptionState) |
| { |
| switch (importedNode->nodeType()) { |
| case TEXT_NODE: |
| return Text::create(*this, toText(importedNode)->data()); |
| case ELEMENT_NODE: { |
| Element* oldElement = toElement(importedNode); |
| RefPtr<Element> newElement = createElement(oldElement->tagQName(), false); |
| |
| newElement->cloneDataFromElement(*oldElement); |
| |
| if (deep) { |
| if (!importContainerNodeChildren(oldElement, newElement, exceptionState)) |
| return nullptr; |
| if (isHTMLTemplateElement(*oldElement) |
| && !importContainerNodeChildren(toHTMLTemplateElement(oldElement)->content(), toHTMLTemplateElement(newElement)->content(), exceptionState)) |
| return nullptr; |
| } |
| |
| return newElement.release(); |
| } |
| 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. |
| exceptionState.ThrowDOMException(NotSupportedError, "The node provided is a shadow root, which may not be imported."); |
| return nullptr; |
| } |
| DocumentFragment* oldFragment = toDocumentFragment(importedNode); |
| RefPtr<DocumentFragment> newFragment = createDocumentFragment(); |
| if (deep && !importContainerNodeChildren(oldFragment, newFragment, exceptionState)) |
| return nullptr; |
| |
| return newFragment.release(); |
| } |
| case DOCUMENT_NODE: |
| exceptionState.ThrowDOMException(NotSupportedError, "The node provided is a document, which may not be imported."); |
| return nullptr; |
| } |
| |
| ASSERT_NOT_REACHED(); |
| return nullptr; |
| } |
| |
| PassRefPtr<Node> Document::adoptNode(PassRefPtr<Node> source, ExceptionState& exceptionState) |
| { |
| EventQueueScope scope; |
| |
| switch (source->nodeType()) { |
| case DOCUMENT_NODE: |
| exceptionState.ThrowDOMException(NotSupportedError, "The node provided is of type '" + source->nodeName() + "', which may not be adopted."); |
| return nullptr; |
| default: |
| if (source->isShadowRoot()) { |
| // ShadowRoot cannot disconnect itself from the host node. |
| exceptionState.ThrowDOMException(HierarchyRequestError, "The node provided is a shadow root, which may not be adopted."); |
| return nullptr; |
| } |
| |
| if (source->parentNode()) { |
| source->parentNode()->removeChild(source.get(), exceptionState); |
| if (exceptionState.had_exception()) |
| return nullptr; |
| } |
| } |
| |
| this->adoptIfNeeded(*source); |
| |
| return source; |
| } |
| |
| // FIXME: This should really be in a possible ElementFactory class |
| PassRefPtr<Element> Document::createElement(const QualifiedName& qName, bool createdByParser) |
| { |
| // FIXME(sky): This should only take a local name. |
| return HTMLElementFactory::createElement(qName.localName(), *this, createdByParser); |
| } |
| |
| 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; |
| 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()); |
| } |
| |
| void Document::setContentLanguage(const AtomicString& language) |
| { |
| if (m_contentLanguage == language) |
| return; |
| m_contentLanguage = language; |
| |
| // Document's style depends on the content language. |
| setNeedsStyleRecalc(SubtreeStyleChange); |
| } |
| |
| KURL Document::baseURI() const |
| { |
| return m_baseURL; |
| } |
| |
| AtomicString Document::contentType() const |
| { |
| return AtomicString("text/html"); |
| } |
| |
| Element* Document::elementFromPoint(int x, int y) const |
| { |
| if (!renderView()) |
| return 0; |
| |
| return TreeScope::elementFromPoint(x, y); |
| } |
| |
| PassRefPtr<Range> Document::caretRangeFromPoint(int x, int y) |
| { |
| if (!renderView()) |
| return nullptr; |
| HitTestResult result = hitTestInDocument(this, x, y); |
| RenderObject* renderer = result.renderer(); |
| if (!renderer) |
| return nullptr; |
| |
| 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 = result.position(); |
| if (positionWithAffinity.position().isNull()) |
| return nullptr; |
| |
| 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 <typename CharacterType> |
| static inline String canonicalizedTitle(Document* document, const String& title) |
| { |
| const CharacterType* characters = title.getCharacters<CharacterType>(); |
| unsigned length = title.length(); |
| unsigned i; |
| |
| StringBuffer<CharacterType> 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<LChar>(this, m_rawTitle); |
| else |
| m_title = canonicalizedTitle<UChar>(this, m_rawTitle); |
| |
| if (!m_frame || oldTitle == m_title) |
| return; |
| m_frame->loaderClient()->dispatchDidReceiveTitle(m_title); |
| } |
| |
| void Document::setTitle(const String& title) |
| { |
| } |
| |
| void Document::setTitleElement(Element* titleElement) |
| { |
| // Only allow the first title element to change the title -- others have no effect. |
| if (m_titleElement && m_titleElement != titleElement) { |
| m_titleElement = Traversal<HTMLTitleElement>::firstWithin(*this); |
| } else { |
| m_titleElement = titleElement; |
| } |
| |
| if (isHTMLTitleElement(m_titleElement)) |
| updateTitle(toHTMLTitleElement(m_titleElement)->text()); |
| } |
| |
| void Document::removeTitle(Element* titleElement) |
| { |
| if (m_titleElement != titleElement) |
| return; |
| |
| m_titleElement = nullptr; |
| |
| // Update title based on first title element in the document, if one exists. |
| if (HTMLTitleElement* title = Traversal<HTMLTitleElement>::firstWithin(*this)) |
| setTitleElement(title); |
| |
| if (!m_titleElement) |
| updateTitle(String()); |
| } |
| |
| const AtomicString& Document::dir() |
| { |
| return nullAtom; |
| } |
| |
| void Document::setDir(const AtomicString& value) |
| { |
| } |
| |
| 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::didChangeVisibilityState() |
| { |
| dispatchEvent(Event::create(EventTypeNames::visibilitychange)); |
| } |
| |
| String Document::nodeName() const |
| { |
| return "#document"; |
| } |
| |
| Node::NodeType Document::nodeType() const |
| { |
| return DOCUMENT_NODE; |
| } |
| |
| void Document::setStateForNewFormElements(const Vector<String>& stateVector) |
| { |
| } |
| |
| FrameView* Document::view() const |
| { |
| if (m_frameView) |
| return m_frameView; |
| return m_frame ? m_frame->view() : 0; |
| } |
| |
| Page* Document::page() const |
| { |
| return m_frame ? m_frame->page() : 0; |
| } |
| |
| FrameHost* Document::frameHost() const |
| { |
| return m_frame ? m_frame->host() : 0; |
| } |
| |
| Settings* Document::settings() const |
| { |
| return m_frame ? m_frame->settings() : 0; |
| } |
| |
| PassRefPtr<Range> Document::createRange() |
| { |
| return Range::create(*this); |
| } |
| |
| bool Document::needsRenderTreeUpdate() const |
| { |
| if (!isActive() || !view()) |
| return false; |
| if (needsFullRenderTreeUpdate()) |
| return true; |
| if (childNeedsStyleRecalc()) |
| return true; |
| return false; |
| } |
| |
| bool Document::needsFullRenderTreeUpdate() const |
| { |
| if (!isActive() || !view()) |
| return false; |
| if (needsStyleRecalc()) |
| return true; |
| // FIXME: The childNeedsDistributionRecalc bit means either self or children, we should fix that. |
| if (childNeedsDistributionRecalc()) |
| return true; |
| if (DocumentAnimations::needsOutdatedAnimationPlayerUpdate(*this)) |
| return true; |
| return false; |
| } |
| |
| bool Document::shouldScheduleRenderTreeUpdate() const |
| { |
| if (!isActive()) |
| return false; |
| if (inStyleRecalc()) |
| return false; |
| // InPreLayout will recalc style itself. There's no reason to schedule another recalc. |
| if (m_lifecycle.state() == DocumentLifecycle::InPreLayout) |
| return false; |
| return true; |
| } |
| |
| void Document::scheduleRenderTreeUpdate() |
| { |
| ASSERT(!hasPendingStyleRecalc()); |
| ASSERT(shouldScheduleRenderTreeUpdate()); |
| ASSERT(needsRenderTreeUpdate()); |
| |
| scheduleVisualUpdate(); |
| |
| // TODO(esprehn): We should either rename this state, or change the other |
| // users of scheduleVisualUpdate() so they don't expect different states. |
| m_lifecycle.ensureStateAtMost(DocumentLifecycle::VisualUpdatePending); |
| } |
| |
| void Document::scheduleVisualUpdate() |
| { |
| if (page()) |
| page()->animator().scheduleVisualUpdate(); |
| } |
| |
| void Document::updateDistributionIfNeeded() |
| { |
| ScriptForbiddenScope forbidScript; |
| |
| if (!childNeedsDistributionRecalc()) |
| return; |
| TRACE_EVENT0("blink", "Document::updateDistributionIfNeeded"); |
| recalcDistribution(); |
| } |
| |
| void Document::updateDistributionForNodeIfNeeded(Node* node) |
| { |
| ScriptForbiddenScope forbidScript; |
| |
| 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::setupFontBuilder(RenderStyle* documentStyle) |
| { |
| FontBuilder fontBuilder; |
| fontBuilder.initForStyleResolve(*this, documentStyle); |
| RefPtr<CSSFontSelector> selector = m_styleEngine->fontSelector(); |
| fontBuilder.createFontForDocument(selector, documentStyle); |
| } |
| |
| void Document::updateRenderTree(StyleRecalcChange change) |
| { |
| ASSERT(isMainThread()); |
| |
| ScriptForbiddenScope forbidScript; |
| |
| if (!view() || !isActive()) |
| return; |
| |
| if (change != Force && !needsRenderTreeUpdate()) |
| return; |
| |
| if (inStyleRecalc()) |
| return; |
| |
| // Entering here from inside layout or paint would be catastrophic since recalcStyle can |
| // tear down the render tree or (unfortunately) run script. Kill the whole renderer if |
| // someone managed to get into here from inside layout or paint. |
| RELEASE_ASSERT(!view()->isInPerformLayout()); |
| RELEASE_ASSERT(!view()->isPainting()); |
| |
| // Script can run below in WidgetUpdates, so protect the LocalFrame. |
| // FIXME: Can this still happen? How does script run inside |
| // UpdateSuspendScope::performDeferredWidgetTreeOperations() ? |
| RefPtr<LocalFrame> protect(m_frame); |
| |
| TRACE_EVENT0("blink", "Document::updateRenderTree"); |
| |
| m_styleRecalcElementCounter = 0; |
| |
| DocumentAnimations::updateOutdatedAnimationPlayersIfNeeded(*this); |
| evaluateMediaQueryListIfNeeded(); |
| updateDistributionIfNeeded(); |
| |
| // FIXME: We should update style on our ancestor chain before proceeding |
| // however doing so currently causes several tests to crash, as LocalFrame::setDocument calls Document::attach |
| // before setting the LocalDOMWindow on the LocalFrame, 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. |
| |
| updateStyle(change); |
| |
| if (m_focusedElement && !m_focusedElement->isFocusable()) |
| clearFocusedElementSoon(); |
| |
| ASSERT(!m_timeline->hasOutdatedAnimationPlayer()); |
| } |
| |
| void Document::updateStyle(StyleRecalcChange change) |
| { |
| TRACE_EVENT0("blink", "Document::updateStyle"); |
| |
| m_lifecycle.advanceTo(DocumentLifecycle::InStyleRecalc); |
| |
| if (styleChangeType() >= SubtreeStyleChange) |
| change = Force; |
| |
| // FIXME: Cannot access the styleResolver() 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) { |
| RefPtr<RenderStyle> documentStyle = StyleResolver::styleForDocument(*this); |
| StyleRecalcChange localChange = RenderStyle::stylePropagationDiff(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. |
| // styleResolver().enableStats(/*StyleResolver::ReportSlowStats*/); |
| |
| if (StyleResolverStats* stats = styleResolver().stats()) |
| stats->reset(); |
| |
| for (Element* element = ElementTraversal::firstChild(*this); element; element = ElementTraversal::nextSibling(*element)) { |
| if (element->shouldCallRecalcStyle(change)) |
| element->recalcStyle(change); |
| } |
| |
| styleResolver().printStats(); |
| |
| view()->recalcOverflowAfterStyleChange(); |
| |
| clearChildNeedsStyleRecalc(); |
| |
| m_styleEngine->resolver().clearStyleSharingList(); |
| |
| ASSERT(!needsStyleRecalc()); |
| ASSERT(!childNeedsStyleRecalc()); |
| ASSERT(inStyleRecalc()); |
| m_lifecycle.advanceTo(DocumentLifecycle::StyleClean); |
| } |
| |
| void Document::updateRenderTreeForNodeIfNeeded(Node* node) |
| { |
| bool needsRecalc = needsFullRenderTreeUpdate(); |
| |
| for (const Node* ancestor = node; ancestor && !needsRecalc; ancestor = NodeRenderingTraversal::parent(ancestor)) |
| needsRecalc = ancestor->needsStyleRecalc(); |
| |
| if (needsRecalc) |
| updateRenderTreeIfNeeded(); |
| } |
| |
| void Document::updateLayout() |
| { |
| ASSERT(isMainThread()); |
| |
| ScriptForbiddenScope forbidScript; |
| |
| RefPtr<FrameView> frameView = view(); |
| if (frameView && frameView->isInPerformLayout()) { |
| // View layout should not be re-entrant. |
| ASSERT_NOT_REACHED(); |
| return; |
| } |
| |
| updateRenderTreeIfNeeded(); |
| |
| if (!isActive()) |
| return; |
| |
| if (frameView->needsLayout()) |
| frameView->layout(); |
| |
| if (lifecycle().state() < DocumentLifecycle::LayoutClean) |
| lifecycle().advanceTo(DocumentLifecycle::LayoutClean); |
| } |
| |
| void Document::setNeedsFocusedElementCheck() |
| { |
| setNeedsStyleRecalc(LocalStyleChange); |
| } |
| |
| void Document::clearFocusedElementSoon() |
| { |
| if (!m_clearFocusedElementTimer.isActive()) |
| m_clearFocusedElementTimer.startOneShot(0, FROM_HERE); |
| } |
| |
| void Document::clearFocusedElementTimerFired(Timer<Document>*) |
| { |
| updateRenderTreeIfNeeded(); |
| m_clearFocusedElementTimer.stop(); |
| |
| if (m_focusedElement && !m_focusedElement->isFocusable()) |
| m_focusedElement->blur(); |
| } |
| |
| StyleResolver& Document::styleResolver() const |
| { |
| ASSERT(isActive()); |
| return m_styleEngine->resolver(); |
| } |
| |
| void Document::attach(const AttachContext& context) |
| { |
| ASSERT(m_lifecycle.state() == DocumentLifecycle::Inactive); |
| |
| m_styleEngine = StyleEngine::create(*this); |
| |
| m_renderView = new RenderView(this); |
| setRenderer(m_renderView); |
| |
| m_renderView->setStyle(StyleResolver::styleForDocument(*this)); |
| |
| ContainerNode::attach(context); |
| |
| m_lifecycle.advanceTo(DocumentLifecycle::StyleClean); |
| } |
| |
| void Document::detach(const AttachContext& context) |
| { |
| ASSERT(isActive()); |
| m_lifecycle.advanceTo(DocumentLifecycle::Stopping); |
| |
| if (page()) |
| page()->documentDetached(this); |
| |
| stopActiveDOMObjects(); |
| |
| // FIXME: consider using ActiveDOMObject. |
| if (m_scriptedAnimationController) |
| m_scriptedAnimationController->clearDocumentPointer(); |
| m_scriptedAnimationController.clear(); |
| |
| // FIXME: This shouldn't be needed once LocalDOMWindow becomes ExecutionContext. |
| if (m_domWindow) |
| m_domWindow->clearEventQueue(); |
| |
| m_hoverNode = nullptr; |
| m_focusedElement = nullptr; |
| m_activeHoverElement = nullptr; |
| |
| m_renderView = 0; |
| ContainerNode::detach(context); |
| |
| m_styleEngine = nullptr; |
| |
| // This is required, as our LocalFrame 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->documentDetached(); |
| |
| lifecycleNotifier().notifyDocumentWasDetached(); |
| m_lifecycle.advanceTo(DocumentLifecycle::Stopped); |
| #if ENABLE(OILPAN) |
| // Done with the window, explicitly clear to hasten its |
| // destruction. |
| clearDOMWindow(); |
| #endif |
| } |
| |
| void Document::prepareForDestruction() |
| { |
| m_markers->prepareForDestruction(); |
| |
| // The process of disconnecting descendant frames could have already detached us. |
| if (!isActive()) |
| return; |
| |
| if (LocalDOMWindow* window = this->domWindow()) |
| window->willDetachDocumentFromFrame(); |
| detach(); |
| } |
| |
| void Document::removeAllEventListeners() |
| { |
| ContainerNode::removeAllEventListeners(); |
| |
| if (LocalDOMWindow* domWindow = this->domWindow()) |
| domWindow->removeAllEventListeners(); |
| } |
| |
| 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(); |
| |
| // FIXME(sky): Unclear if anything below this makes any sense. |
| if (!m_frame) { |
| m_loadEventProgress = LoadEventTried; |
| return; |
| } |
| checkCompleted(); |
| } |
| |
| DocumentParser* Document::startParsing() |
| { |
| ASSERT(!m_parser); |
| ASSERT(!m_isParsing); |
| ASSERT(!firstChild()); |
| ASSERT(!m_focusedElement); |
| |
| m_parser = HTMLDocumentParser::create(*this, false); |
| setParsing(true); |
| setReadyState(Loading); |
| return m_parser.get(); |
| } |
| |
| void Document::implicitClose() |
| { |
| ASSERT(!inStyleRecalc()); |
| |
| bool doload = !parsing() && m_parser && !processingLoadEvent(); |
| |
| // 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 LocalDOMWindow and cause it (and its |
| // attached Document) to be destroyed. |
| RefPtr<LocalDOMWindow> protectedWindow(this->domWindow()); |
| |
| m_loadEventProgress = LoadEventInProgress; |
| |
| // We have to clear the parser, in case someone document.write()s from the |
| // onLoad event handler, as in Radar 3206524. |
| detachParser(); |
| |
| if (frame()) { |
| ImageLoader::dispatchPendingLoadEvents(); |
| ImageLoader::dispatchPendingErrorEvents(); |
| } |
| |
| // 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. |
| |
| if (protectedWindow) |
| protectedWindow->documentWasClosed(); |
| |
| if (frame()) |
| frame()->loaderClient()->dispatchDidHandleOnloadEvents(); |
| |
| if (!frame()) { |
| m_loadEventProgress = LoadEventCompleted; |
| return; |
| } |
| |
| // FIXME(sky): Could start frame if they are still paused here. |
| m_loadEventProgress = LoadEventCompleted; |
| } |
| |
| void Document::checkCompleted() |
| { |
| if (isLoadCompleted()) |
| return; |
| |
| // Are we still parsing? |
| if (parsing()) |
| return; |
| |
| // Still waiting imports? |
| if (!haveImportsLoaded()) |
| return; |
| |
| // Still waiting for images/scripts? |
| if (fetcher()->requestCount()) |
| return; |
| |
| // Still waiting for elements that don't go through a FrameLoader? |
| if (isDelayingLoadEvent()) |
| return; |
| |
| // OK, completed. |
| setReadyState(Complete); |
| if (loadEventStillNeeded()) |
| implicitClose(); |
| } |
| |
| void Document::dispatchUnloadEvents() |
| { |
| RefPtr<Document> protect(this); |
| if (m_parser) |
| m_parser->stopParsing(); |
| |
| if (m_loadEventProgress >= LoadEventTried && m_loadEventProgress <= UnloadEventInProgress) { |
| if (m_loadEventProgress < PageHideInProgress) { |
| m_loadEventProgress = PageHideInProgress; |
| if (LocalDOMWindow* window = domWindow()) |
| window->dispatchEvent(PageTransitionEvent::create(EventTypeNames::pagehide, false), this); |
| if (!m_frame) |
| return; |
| |
| m_loadEventProgress = UnloadEventInProgress; |
| RefPtr<Event> unloadEvent(Event::create(EventTypeNames::unload)); |
| m_frame->domWindow()->dispatchEvent(unloadEvent, this); |
| } |
| m_loadEventProgress = UnloadEventHandled; |
| } |
| |
| if (!m_frame) |
| return; |
| |
| removeAllEventListenersRecursively(); |
| } |
| |
| Document::PageDismissalType Document::pageDismissalEventBeingDispatched() const |
| { |
| if (m_loadEventProgress == PageHideInProgress) |
| return PageHideDismissal; |
| if (m_loadEventProgress == UnloadEventInProgress) |
| return UnloadDismissal; |
| return NoDismissal; |
| } |
| |
| void Document::setParsing(bool b) |
| { |
| m_isParsing = b; |
| |
| if (m_isParsing && !m_elementDataCache) |
| m_elementDataCache = ElementDataCache::create(); |
| } |
| |
| int Document::elapsedTime() const |
| { |
| return static_cast<int>((currentTime() - m_startTime) * 1000); |
| } |
| |
| 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, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack> callStack) |
| { |
| RefPtr<ConsoleMessage> consoleMessage = ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber); |
| consoleMessage->setScriptId(scriptId); |
| addMessage(consoleMessage.release()); |
| } |
| |
| void Document::setURL(const KURL& url) |
| { |
| const KURL& newURL = url.isEmpty() ? blankURL() : url; |
| if (newURL == m_url) |
| return; |
| |
| m_url = newURL; |
| updateBaseURL(); |
| } |
| |
| void Document::updateBaseURL() |
| { |
| KURL oldBaseURL = m_baseURL; |
| m_baseURL = m_url; |
| |
| if (!m_baseURL.isValid()) |
| m_baseURL = KURL(); |
| } |
| |
| void Document::didLoadAllImports() |
| { |
| if (!importLoader()) |
| styleResolverChanged(); |
| didLoadAllParserBlockingResources(); |
| } |
| |
| void Document::didLoadAllParserBlockingResources() |
| { |
| m_resumeParserWaitingForResourcesTimer.startOneShot(0, FROM_HERE); |
| } |
| |
| void Document::resumeParserWaitingForResourcesTimerFired(Timer<Document>*) |
| { |
| if (!haveImportsLoaded()) |
| return; |
| if (m_parser) |
| m_parser->resumeAfterWaitingForImports(); |
| } |
| |
| TextPosition Document::parserPosition() const |
| { |
| if (m_parser) |
| m_parser->textPosition(); |
| return TextPosition::belowRangePosition(); |
| } |
| |
| CSSStyleSheet& Document::elementSheet() |
| { |
| if (!m_elemSheet) |
| m_elemSheet = CSSStyleSheet::create(this, m_baseURL); |
| return *m_elemSheet; |
| } |
| |
| String Document::outgoingReferrer() |
| { |
| // See http://www.whatwg.org/specs/web-apps/current-work/#fetching-resources |
| // for why we walk the parent chain for srcdoc documents. |
| Document* referrerDocument = this; |
| return referrerDocument->m_url.strippedForUseAsReferrer(); |
| } |
| |
| PassRefPtr<Node> Document::cloneNode(bool deep) |
| { |
| RefPtr<Document> clone = cloneDocumentWithoutChildren(); |
| if (deep) |
| cloneChildNodes(clone.get()); |
| return clone.release(); |
| } |
| |
| PassRefPtr<Document> Document::cloneDocumentWithoutChildren() |
| { |
| return create(DocumentInit(url()).withElementRegistry(elementRegistry())); |
| } |
| |
| void Document::evaluateMediaQueryListIfNeeded() |
| { |
| if (!m_evaluateMediaQueriesOnStyleRecalc) |
| return; |
| evaluateMediaQueryList(); |
| m_evaluateMediaQueriesOnStyleRecalc = false; |
| } |
| |
| void Document::evaluateMediaQueryList() |
| { |
| if (m_mediaQueryMatcher) |
| m_mediaQueryMatcher->mediaFeaturesChanged(); |
| } |
| |
| void Document::notifyResizeForViewportUnits() |
| { |
| if (m_mediaQueryMatcher) |
| m_mediaQueryMatcher->viewportChanged(); |
| if (!hasViewportUnits()) |
| return; |
| styleResolver().notifyResizeForViewportUnits(); |
| setNeedsStyleRecalcForViewportUnits(); |
| } |
| |
| void Document::styleResolverChanged() |
| { |
| // styleResolverChanged() can be invoked during Document destruction. |
| // We just skip that case. |
| if (!m_styleEngine) |
| return; |
| m_styleEngine->resolverChanged(); |
| } |
| |
| void Document::setHoverNode(PassRefPtr<Node> newHoverNode) |
| { |
| m_hoverNode = newHoverNode; |
| } |
| |
| void Document::setActiveHoverElement(PassRefPtr<Element> newActiveElement) |
| { |
| if (!newActiveElement) { |
| m_activeHoverElement.clear(); |
| return; |
| } |
| |
| m_activeHoverElement = 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(nullptr); |
| } |
| |
| 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()); |
| } |
| |
| void Document::activeChainNodeDetached(Node* node) |
| { |
| if (!m_activeHoverElement) |
| return; |
| |
| if (node != m_activeHoverElement) |
| return; |
| |
| Node* activeNode = NodeRenderingTraversal::parent(node); |
| while (activeNode && activeNode->isElementNode() && !activeNode->renderer()) |
| activeNode = NodeRenderingTraversal::parent(activeNode); |
| |
| m_activeHoverElement = activeNode && activeNode->isElementNode() ? toElement(activeNode) : 0; |
| } |
| |
| bool Document::setFocusedElement(PassRefPtr<Element> prpNewFocusedElement, FocusType type) |
| { |
| m_clearFocusedElementTimer.stop(); |
| |
| RefPtr<Element> newFocusedElement = prpNewFocusedElement; |
| |
| // Make sure newFocusedNode is actually in this document |
| if (newFocusedElement && (newFocusedElement->document() != this)) |
| return true; |
| |
| if (m_focusedElement == newFocusedElement) |
| return true; |
| |
| bool focusChangeBlocked = false; |
| RefPtr<Element> oldFocusedElement = m_focusedElement; |
| m_focusedElement = nullptr; |
| |
| // Remove focus from the existing focus node (if any) |
| if (oldFocusedElement) { |
| if (oldFocusedElement->active()) |
| oldFocusedElement->setActive(false); |
| |
| oldFocusedElement->setFocus(false); |
| |
| // Dispatch the blur event and let the node do any other blur related activities (important for text fields) |
| // If page lost focus, blur event will have already been dispatched |
| if (page() && (page()->focusController().isFocused())) { |
| oldFocusedElement->dispatchBlurEvent(newFocusedElement.get()); |
| |
| if (m_focusedElement) { |
| // handler shifted focus |
| focusChangeBlocked = true; |
| newFocusedElement = nullptr; |
| } |
| |
| 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 <rdar://problem/8503958> is resolved. |
| oldFocusedElement->dispatchFocusOutEvent(EventTypeNames::DOMFocusOut, newFocusedElement.get()); // DOM level 2 name for compatibility. |
| |
| if (m_focusedElement) { |
| // handler shifted focus |
| focusChangeBlocked = true; |
| newFocusedElement = nullptr; |
| } |
| } |
| } |
| |
| 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) |
| // If page lost focus, event will be dispatched on page focus, don't duplicate |
| if (page() && (page()->focusController().isFocused())) { |
| m_focusedElement->dispatchFocusEvent(oldFocusedElement.get(), type); |
| |
| |
| 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 <rdar://problem/8503958> 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()); |
| } |
| |
| if (!focusChangeBlocked && frameHost()) |
| page()->focusedNodeChanged(m_focusedElement.get()); |
| |
| SetFocusedElementDone: |
| updateRenderTreeIfNeeded(); |
| if (LocalFrame* frame = this->frame()) |
| frame->selection().didChangeFocus(); |
| return !focusChangeBlocked; |
| } |
| |
| void Document::updateRangesAfterChildrenChanged(ContainerNode* container) |
| { |
| if (!m_ranges.isEmpty()) { |
| AttachedRangeSet::const_iterator end = m_ranges.end(); |
| for (AttachedRangeSet::const_iterator it = m_ranges.begin(); it != end; ++it) |
| (*it)->nodeChildrenChanged(container); |
| } |
| } |
| |
| void Document::updateRangesAfterNodeMovedToAnotherDocument(const Node& node) |
| { |
| ASSERT(node.document() != this); |
| if (m_ranges.isEmpty()) |
| return; |
| AttachedRangeSet ranges = m_ranges; |
| AttachedRangeSet::const_iterator end = ranges.end(); |
| for (AttachedRangeSet::const_iterator it = ranges.begin(); it != end; ++it) |
| (*it)->updateOwnerDocumentIfNeeded(); |
| } |
| |
| void Document::nodeChildrenWillBeRemoved(ContainerNode& container) |
| { |
| EventDispatchForbiddenScope assertNoEventDispatch; |
| if (!m_ranges.isEmpty()) { |
| AttachedRangeSet::const_iterator end = m_ranges.end(); |
| for (AttachedRangeSet::const_iterator it = m_ranges.begin(); it != end; ++it) |
| (*it)->nodeChildrenWillBeRemoved(container); |
| } |
| |
| if (LocalFrame* 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) |
| { |
| if (!m_ranges.isEmpty()) { |
| AttachedRangeSet::const_iterator rangesEnd = m_ranges.end(); |
| for (AttachedRangeSet::const_iterator it = m_ranges.begin(); it != rangesEnd; ++it) |
| (*it)->nodeWillBeRemoved(n); |
| } |
| |
| if (LocalFrame* 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()) { |
| AttachedRangeSet::const_iterator end = m_ranges.end(); |
| for (AttachedRangeSet::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()) { |
| AttachedRangeSet::const_iterator end = m_ranges.end(); |
| for (AttachedRangeSet::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); |
| AttachedRangeSet::const_iterator end = m_ranges.end(); |
| for (AttachedRangeSet::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()) { |
| AttachedRangeSet::const_iterator end = m_ranges.end(); |
| for (AttachedRangeSet::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. |
| } |
| |
| EventQueue* Document::eventQueue() const |
| { |
| if (!m_domWindow) |
| return 0; |
| return m_domWindow->eventQueue(); |
| } |
| |
| void Document::enqueueAnimationFrameEvent(PassRefPtr<Event> event) |
| { |
| ensureScriptedAnimationController().enqueueEvent(event); |
| } |
| |
| void Document::enqueueUniqueAnimationFrameEvent(PassRefPtr<Event> event) |
| { |
| ensureScriptedAnimationController().enqueuePerFrameEvent(event); |
| } |
| |
| void Document::enqueueResizeEvent() |
| { |
| RefPtr<Event> event = Event::create(EventTypeNames::resize); |
| event->setTarget(domWindow()); |
| ensureScriptedAnimationController().enqueuePerFrameEvent(event.release()); |
| } |
| |
| void Document::enqueueMediaQueryChangeListeners(Vector<RefPtr<MediaQueryListListener> >& listeners) |
| { |
| ensureScriptedAnimationController().enqueueMediaQueryChangeListeners(listeners); |
| } |
| |
| void Document::addListenerTypeIfNeeded(const AtomicString& eventType) |
| { |
| if (eventType == EventTypeNames::animationstart) { |
| addListenerType(ANIMATIONSTART_LISTENER); |
| } else if (eventType == EventTypeNames::animationend) { |
| addListenerType(ANIMATIONEND_LISTENER); |
| } else if (eventType == EventTypeNames::animationiteration) { |
| addListenerType(ANIMATIONITERATION_LISTENER); |
| } else if (eventType == EventTypeNames::transitionend) { |
| addListenerType(TRANSITIONEND_LISTENER); |
| } |
| } |
| |
| const AtomicString& Document::referrer() const |
| { |
| return nullAtom; |
| } |
| |
| 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<typename CharType> |
| 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<typename CharType> |
| 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.ThrowDOMException(NamespaceError, "The qualified name provided ('" + qualifiedName + "') contains multiple colons."); |
| return false; // multiple colons: not allowed |
| } |
| nameStart = true; |
| sawColon = true; |
| colonPos = i - 1; |
| } else if (nameStart) { |
| if (!isValidNameStart(c)) { |
| StringBuilder message; |
| message.appendLiteral("The qualified name provided ('"); |
| message.append(qualifiedName); |
| message.appendLiteral("') contains the invalid name-start character '"); |
| message.append(c); |
| message.appendLiteral("'."); |
| exceptionState.ThrowDOMException(InvalidCharacterError, message.toString()); |
| return false; |
| } |
| nameStart = false; |
| } else { |
| if (!isValidNamePart(c)) { |
| StringBuilder message; |
| message.appendLiteral("The qualified name provided ('"); |
| message.append(qualifiedName); |
| message.appendLiteral("') contains the invalid character '"); |
| message.append(c); |
| message.appendLiteral("'."); |
| exceptionState.ThrowDOMException(InvalidCharacterError, message.toString()); |
| return false; |
| } |
| } |
| } |
| |
| if (!sawColon) { |
| prefix = nullAtom; |
| localName = qualifiedName; |
| } else { |
| prefix = AtomicString(characters, colonPos); |
| if (prefix.isEmpty()) { |
| exceptionState.ThrowDOMException(NamespaceError, "The qualified name provided ('" + qualifiedName + "') has an empty namespace prefix."); |
| return false; |
| } |
| int prefixStart = colonPos + 1; |
| localName = AtomicString(characters + prefixStart, length - prefixStart); |
| } |
| |
| if (localName.isEmpty()) { |
| exceptionState.ThrowDOMException(NamespaceError, "The qualified name provided ('" + qualifiedName + "') has an empty local name."); |
| return false; |
| } |
| |
| return true; |
| } |
| |
| bool Document::parseQualifiedName(const AtomicString& qualifiedName, AtomicString& prefix, AtomicString& localName, ExceptionState& exceptionState) |
| { |
| unsigned length = qualifiedName.length(); |
| |
| if (!length) { |
| exceptionState.ThrowDOMException(InvalidCharacterError, "The qualified name provided is empty."); |
| return false; |
| } |
| |
| if (qualifiedName.is8Bit()) |
| return parseQualifiedNameInternal(qualifiedName, qualifiedName.characters8(), length, prefix, localName, exceptionState); |
| return parseQualifiedNameInternal(qualifiedName, qualifiedName.characters16(), length, prefix, localName, exceptionState); |
| } |
| |
| KURL Document::completeURL(const String& url) 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(); |
| return KURL(m_baseURL, url); |
| } |
| |
| KURL Document::openSearchDescriptionURL() |
| { |
| return KURL(); |
| } |
| |
| void Document::pushCurrentScript(PassRefPtr<HTMLScriptElement> newCurrentScript) |
| { |
| ASSERT(newCurrentScript); |
| m_currentScriptStack.append(newCurrentScript); |
| } |
| |
| void Document::popCurrentScript() |
| { |
| ASSERT(!m_currentScriptStack.isEmpty()); |
| m_currentScriptStack.removeLast(); |
| } |
| |
| Document& Document::topDocument() const |
| { |
| Document* doc = const_cast<Document*>(this); |
| ASSERT(doc); |
| return *doc; |
| } |
| |
| WeakPtr<Document> Document::contextDocument() |
| { |
| if (m_contextDocument) |
| return m_contextDocument; |
| if (m_frame) { |
| #if ENABLE(OILPAN) |
| return this; |
| #else |
| return m_weakFactory.createWeakPtr(); |
| #endif |
| } |
| return WeakPtr<Document>(nullptr); |
| } |
| |
| void Document::finishedParsing() |
| { |
| ASSERT(!m_parser || !m_parser->isParsing()); |
| ASSERT(!m_parser || m_readyState != Loading); |
| setParsing(false); |
| dispatchEvent(Event::createBubble(EventTypeNames::DOMContentLoaded)); |
| |
| // 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<LocalFrame> f = frame()) |
| checkCompleted(); |
| |
| // Schedule dropping of the ElementDataCache. 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 cache access since that could lead to huge caches being kept |
| // alive indefinitely by something innocuous like JS setting .innerHTML repeatedly on a timer. |
| m_elementDataCacheClearTimer.startOneShot(10, FROM_HERE); |
| |
| if (HTMLImportLoader* import = importLoader()) |
| import->didFinishParsing(); |
| } |
| |
| void Document::elementDataCacheClearTimerFired(Timer<Document>*) |
| { |
| m_elementDataCache.clear(); |
| } |
| |
| 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 |
| LocalFrame* frame = executingFrame(); |
| if (!frame) |
| return false; |
| if (!node->document().executingFrame()) |
| return false; |
| return true; |
| } |
| |
| bool Document::isContextThread() const |
| { |
| return isMainThread(); |
| } |
| |
| 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); |
| } |
| |
| void Document::reportBlockedScriptExecutionToInspector(const String& directiveText) |
| { |
| } |
| |
| void Document::addMessage(PassRefPtr<ConsoleMessage> consoleMessage) |
| { |
| if (!m_frame) |
| return; |
| |
| if (consoleMessage->url().isNull() && !consoleMessage->lineNumber()) { |
| consoleMessage->setURL(url().string()); |
| if (parsing() && m_parser) { |
| if (!m_parser->isWaitingForScripts() && !m_parser->isExecutingScript()) |
| consoleMessage->setLineNumber(m_parser->textPosition().m_line.oneBasedInt()); |
| } |
| } |
| m_frame->console().addMessage(consoleMessage); |
| } |
| |
| void Document::decrementLoadEventDelayCount() |
| { |
| ASSERT(m_loadEventDelayCount); |
| --m_loadEventDelayCount; |
| |
| if (!m_loadEventDelayCount) |
| checkLoadEventSoon(); |
| } |
| |
| void Document::checkLoadEventSoon() |
| { |
| if (frame() && !m_loadEventDelayTimer.isActive()) |
| m_loadEventDelayTimer.startOneShot(0, FROM_HERE); |
| } |
| |
| bool Document::isDelayingLoadEvent() |
| { |
| return m_loadEventDelayCount; |
| } |
| |
| |
| void Document::loadEventDelayTimerFired(Timer<Document>*) |
| { |
| 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) |
| { |
| WTF_LOG(ScriptedAnimationController, "Document::serviceScriptedAnimations: controller = %d", |
| m_scriptedAnimationController ? 1 : 0); |
| if (!m_scriptedAnimationController) |
| return; |
| m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationStartTime); |
| } |
| |
| DocumentLoadTiming* Document::timing() const |
| { |
| return &m_documentLoadTiming; |
| } |
| |
| IntSize Document::initialViewportSize() const |
| { |
| if (!view()) |
| return IntSize(); |
| return view()->unscaledVisibleContentSize(); |
| } |
| |
| void Document::decrementActiveParserCount() |
| { |
| --m_activeParserCount; |
| } |
| |
| Document& Document::ensureTemplateDocument() |
| { |
| if (isTemplateDocument()) |
| return *this; |
| |
| if (m_templateDocument) |
| return *m_templateDocument; |
| |
| DocumentInit init = DocumentInit::fromContext(contextDocument(), blankURL()); |
| m_templateDocument = Document::create(init); |
| |
| m_templateDocument->m_templateDocumentHost = this; // balanced in dtor. |
| |
| return *m_templateDocument.get(); |
| } |
| |
| 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()); |
| } |
| |
| Element* Document::activeElement() const |
| { |
| if (Element* element = treeScope().adjustedFocusedElement()) |
| return element; |
| return nullptr; |
| } |
| |
| void Document::getTransitionElementData(Vector<TransitionElementData>& elementData) |
| { |
| } |
| |
| bool Document::hasFocus() const |
| { |
| Page* page = this->page(); |
| if (!page) |
| return false; |
| if (!page->focusController().isActive() || !page->focusController().isFocused()) |
| return false; |
| Frame* focusedFrame = page->focusController().focusedFrame(); |
| return focusedFrame && focusedFrame == frame(); |
| } |
| |
| Picture* Document::rootPicture() const |
| { |
| return m_picture.get(); |
| } |
| |
| void Document::setRootPicture(PassRefPtr<Picture> picture) |
| { |
| m_picture = picture; |
| if (m_picture) |
| PaintingTasks::enqueueCommit(this, m_picture->displayList()); |
| scheduleVisualUpdate(); |
| } |
| |
| } // namespace blink |
| |
| #ifndef NDEBUG |
| using namespace blink; |
| void showLiveDocumentInstances() |
| { |
| WeakDocumentSet& set = liveDocumentSet(); |
| fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it) { |
| fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().utf8().data()); |
| } |
| } |
| #endif |