diff -r 000000000000 -r 4f2f89ce4247 WebCore/html/HTMLLinkElement.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebCore/html/HTMLLinkElement.cpp Fri Sep 17 09:02:29 2010 +0300 @@ -0,0 +1,416 @@ +/* + * Copyright (C) 1999 Lars Knoll (knoll@kde.org) + * (C) 1999 Antti Koivisto (koivisto@kde.org) + * (C) 2001 Dirk Mueller (mueller@kde.org) + * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. + * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com) + * + * 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 "HTMLLinkElement.h" + +#include "Attribute.h" +#include "CSSHelper.h" +#include "CachedCSSStyleSheet.h" +#include "DocLoader.h" +#include "Document.h" +#include "Frame.h" +#include "FrameLoader.h" +#include "FrameLoaderClient.h" +#include "FrameTree.h" +#include "HTMLNames.h" +#include "MediaList.h" +#include "MediaQueryEvaluator.h" +#include "Page.h" +#include "ResourceHandle.h" +#include "ScriptEventListener.h" +#include "Settings.h" +#include + +namespace WebCore { + +using namespace HTMLNames; + +inline HTMLLinkElement::HTMLLinkElement(const QualifiedName& tagName, Document* document, bool createdByParser) + : HTMLElement(tagName, document) + , m_disabledState(Unset) + , m_loading(false) + , m_createdByParser(createdByParser) + , m_shouldProcessAfterAttach(false) +{ + ASSERT(hasTagName(linkTag)); +} + +PassRefPtr HTMLLinkElement::create(const QualifiedName& tagName, Document* document, bool createdByParser) +{ + return adoptRef(new HTMLLinkElement(tagName, document, createdByParser)); +} + +HTMLLinkElement::~HTMLLinkElement() +{ + if (m_cachedSheet) { + m_cachedSheet->removeClient(this); + if (m_loading && !isDisabled() && !isAlternate()) + document()->removePendingSheet(); + } +} + +void HTMLLinkElement::setDisabledState(bool _disabled) +{ + DisabledState oldDisabledState = m_disabledState; + m_disabledState = _disabled ? Disabled : EnabledViaScript; + if (oldDisabledState != m_disabledState) { + // If we change the disabled state while the sheet is still loading, then we have to + // perform three checks: + if (isLoading()) { + // Check #1: If the sheet becomes disabled while it was loading, and if it was either + // a main sheet or a sheet that was previously enabled via script, then we need + // to remove it from the list of pending sheets. + if (m_disabledState == Disabled && (!m_relAttribute.m_isAlternate || oldDisabledState == EnabledViaScript)) + document()->removePendingSheet(); + + // Check #2: An alternate sheet becomes enabled while it is still loading. + if (m_relAttribute.m_isAlternate && m_disabledState == EnabledViaScript) + document()->addPendingSheet(); + + // Check #3: A main sheet becomes enabled while it was still loading and + // after it was disabled via script. It takes really terrible code to make this + // happen (a double toggle for no reason essentially). This happens on + // virtualplastic.net, which manages to do about 12 enable/disables on only 3 + // sheets. :) + if (!m_relAttribute.m_isAlternate && m_disabledState == EnabledViaScript && oldDisabledState == Disabled) + document()->addPendingSheet(); + + // If the sheet is already loading just bail. + return; + } + + // Load the sheet, since it's never been loaded before. + if (!m_sheet && m_disabledState == EnabledViaScript) + process(); + else + document()->updateStyleSelector(); // Update the style selector. + } +} + +StyleSheet* HTMLLinkElement::sheet() const +{ + return m_sheet.get(); +} + +void HTMLLinkElement::parseMappedAttribute(Attribute* attr) +{ + if (attr->name() == relAttr) { + tokenizeRelAttribute(attr->value(), m_relAttribute); + process(); + } else if (attr->name() == hrefAttr) { + m_url = document()->completeURL(deprecatedParseURL(attr->value())); + process(); + } else if (attr->name() == typeAttr) { + m_type = attr->value(); + process(); + } else if (attr->name() == mediaAttr) { + m_media = attr->value().string().lower(); + process(); + } else if (attr->name() == disabledAttr) + setDisabledState(!attr->isNull()); + else if (attr->name() == onbeforeloadAttr) + setAttributeEventListener(eventNames().beforeloadEvent, createAttributeEventListener(this, attr)); + else { + if (attr->name() == titleAttr && m_sheet) + m_sheet->setTitle(attr->value()); + HTMLElement::parseMappedAttribute(attr); + } +} + +void HTMLLinkElement::tokenizeRelAttribute(const AtomicString& rel, RelAttribute& relAttribute) +{ + relAttribute.m_isStyleSheet = false; + relAttribute.m_isIcon = false; + relAttribute.m_isAlternate = false; + relAttribute.m_isDNSPrefetch = false; +#if ENABLE(LINK_PREFETCH) + relAttribute.m_isLinkPrefetch = false; +#endif + if (equalIgnoringCase(rel, "stylesheet")) + relAttribute.m_isStyleSheet = true; + else if (equalIgnoringCase(rel, "icon") || equalIgnoringCase(rel, "shortcut icon")) + relAttribute.m_isIcon = true; + else if (equalIgnoringCase(rel, "dns-prefetch")) + relAttribute.m_isDNSPrefetch = true; +#if ENABLE(LINK_PREFETCH) + else if (equalIgnoringCase(rel, "prefetch")) + relAttribute.m_isLinkPrefetch = true; +#endif + else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) { + relAttribute.m_isStyleSheet = true; + relAttribute.m_isAlternate = true; + } else { + // Tokenize the rel attribute and set bits based on specific keywords that we find. + String relString = rel.string(); + relString.replace('\n', ' '); + Vector list; + relString.split(' ', list); + Vector::const_iterator end = list.end(); + for (Vector::const_iterator it = list.begin(); it != end; ++it) { + if (equalIgnoringCase(*it, "stylesheet")) + relAttribute.m_isStyleSheet = true; + else if (equalIgnoringCase(*it, "alternate")) + relAttribute.m_isAlternate = true; + else if (equalIgnoringCase(*it, "icon")) + relAttribute.m_isIcon = true; + } + } +} + +void HTMLLinkElement::process() +{ + if (!inDocument()) + return; + + String type = m_type.lower(); + + // IE extension: location of small icon for locationbar / bookmarks + // We'll record this URL per document, even if we later only use it in top level frames + if (m_relAttribute.m_isIcon && m_url.isValid() && !m_url.isEmpty()) + document()->setIconURL(m_url.string(), type); + + if (m_relAttribute.m_isDNSPrefetch && document()->isDNSPrefetchEnabled() && m_url.isValid() && !m_url.isEmpty()) + ResourceHandle::prepareForURL(m_url); + +#if ENABLE(LINK_PREFETCH) + if (m_relAttribute.m_isLinkPrefetch && m_url.isValid()) + document()->docLoader()->requestLinkPrefetch(m_url); +#endif + + bool acceptIfTypeContainsTextCSS = document()->page() && document()->page()->settings() && document()->page()->settings()->treatsAnyTextCSSLinkAsStylesheet(); + + // Stylesheet + // This was buggy and would incorrectly match , which has a different specified meaning. -dwh + if (m_disabledState != Disabled && (m_relAttribute.m_isStyleSheet || (acceptIfTypeContainsTextCSS && type.contains("text/css"))) && document()->frame() && m_url.isValid()) { + // also, don't load style sheets for standalone documents + + String charset = getAttribute(charsetAttr); + if (charset.isEmpty() && document()->frame()) + charset = document()->frame()->loader()->writer()->encoding(); + + if (m_cachedSheet) { + if (m_loading) + document()->removePendingSheet(); + m_cachedSheet->removeClient(this); + m_cachedSheet = 0; + } + + if (!dispatchBeforeLoadEvent(m_url)) + return; + + m_loading = true; + + // Add ourselves as a pending sheet, but only if we aren't an alternate + // stylesheet. Alternate stylesheets don't hold up render tree construction. + if (!isAlternate()) + document()->addPendingSheet(); + + m_cachedSheet = document()->docLoader()->requestCSSStyleSheet(m_url, charset); + + if (m_cachedSheet) + m_cachedSheet->addClient(this); + else { + // The request may have been denied if (for example) the stylesheet is local and the document is remote. + m_loading = false; + if (!isAlternate()) + document()->removePendingSheet(); + } + } else if (m_sheet) { + // we no longer contain a stylesheet, e.g. perhaps rel or type was changed + m_sheet = 0; + document()->updateStyleSelector(); + } +} + +void HTMLLinkElement::processCallback(Node* node) +{ + ASSERT_ARG(node, node && node->hasTagName(linkTag)); + static_cast(node)->process(); +} + +void HTMLLinkElement::insertedIntoDocument() +{ + HTMLElement::insertedIntoDocument(); + document()->addStyleSheetCandidateNode(this, m_createdByParser); + + // Since processing a stylesheet link causes a beforeload event + // to fire, it is possible for JavaScript to remove the element in the midst + // of it being inserted into the DOM, which can lead to assertion failures + // and crashes. Avoid this by postponing the beforeload/load until after + // attach. + m_shouldProcessAfterAttach = true; +} + +void HTMLLinkElement::removedFromDocument() +{ + HTMLElement::removedFromDocument(); + + document()->removeStyleSheetCandidateNode(this); + + // FIXME: It's terrible to do a synchronous update of the style selector just because a