blob: eb9f3b102f5b50e9bdbd6a595fdcffcec0dd199f [file] [log] [blame]
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Simon Hausmann (hausmann@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2004, 2006, 2010 Apple Inc. 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 "third_party/blink/renderer/core/html/html_html_element.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/document_parser.h"
#include "third_party/blink/renderer/core/frame/deprecation.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/loader/appcache/application_cache_host.h"
#include "third_party/blink/renderer/core/loader/document_loader.h"
#include "third_party/blink/renderer/core/loader/frame_loader.h"
#include "third_party/blink/renderer/platform/runtime_enabled_features.h"
namespace blink {
using namespace HTMLNames;
inline HTMLHtmlElement::HTMLHtmlElement(Document& document)
: HTMLElement(htmlTag, document) {}
DEFINE_NODE_FACTORY(HTMLHtmlElement)
bool HTMLHtmlElement::IsURLAttribute(const Attribute& attribute) const {
return attribute.GetName() == manifestAttr ||
HTMLElement::IsURLAttribute(attribute);
}
void HTMLHtmlElement::InsertedByParser() {
// When parsing a fragment, its dummy document has a null parser.
if (!GetDocument().Parser())
return;
MaybeSetupApplicationCache();
GetDocument().Parser()->DocumentElementAvailable();
if (GetDocument().GetFrame()) {
GetDocument().GetFrame()->Loader().DispatchDocumentElementAvailable();
GetDocument().GetFrame()->Loader().RunScriptsAtDocumentElementAvailable();
// RunScriptsAtDocumentElementAvailable might have invalidated
// GetDocument().
}
}
void HTMLHtmlElement::MaybeSetupApplicationCache() {
if (!GetDocument().GetFrame())
return;
DocumentLoader* document_loader =
GetDocument().GetFrame()->Loader().GetDocumentLoader();
if (!document_loader ||
!GetDocument().Parser()->DocumentWasLoadedAsPartOfNavigation())
return;
const AtomicString& manifest = FastGetAttribute(manifestAttr);
if (RuntimeEnabledFeatures::RestrictAppCacheToSecureContextsEnabled() &&
!GetDocument().IsSecureContext()) {
if (!manifest.IsEmpty()) {
Deprecation::CountDeprecation(
GetDocument(), WebFeature::kApplicationCacheAPIInsecureOrigin);
}
return;
}
if (manifest.IsEmpty())
document_loader->GetApplicationCacheHost()->SelectCacheWithoutManifest();
else
document_loader->GetApplicationCacheHost()->SelectCacheWithManifest(
GetDocument().CompleteURL(manifest));
}
} // namespace blink