/* * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All * rights reserved. * Copyright (C) 2007 Alexey Proskuryakov * Copyright (C) 2007, 2008 Eric Seidel * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. * (http://www.torchmobile.com/) * Copyright (c) 2011, Code Aurora Forum. All rights reserved. * Copyright (C) Research In Motion Limited 2011. All rights reserved. * Copyright (C) 2012 Google 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/css/css_default_style_sheets.h" #include "third_party/blink/renderer/core/css/media_query_evaluator.h" #include "third_party/blink/renderer/core/css/rule_set.h" #include "third_party/blink/renderer/core/css/style_sheet_contents.h" #include "third_party/blink/renderer/core/html/html_anchor_element.h" #include "third_party/blink/renderer/core/html/html_html_element.h" #include "third_party/blink/renderer/core/layout/layout_theme.h" #include "third_party/blink/renderer/core/mathml_names.h" #include "third_party/blink/renderer/platform/data_resource_helper.h" #include "third_party/blink/renderer/platform/runtime_enabled_features.h" #include "third_party/blink/renderer/platform/wtf/leak_annotations.h" namespace blink { CSSDefaultStyleSheets& CSSDefaultStyleSheets::Instance() { DEFINE_STATIC_LOCAL(Persistent, css_default_style_sheets, (MakeGarbageCollected())); return *css_default_style_sheets; } static const MediaQueryEvaluator& ScreenEval() { DEFINE_STATIC_LOCAL(Persistent, static_screen_eval, (MakeGarbageCollected("screen"))); return *static_screen_eval; } static const MediaQueryEvaluator& PrintEval() { DEFINE_STATIC_LOCAL(Persistent, static_print_eval, (MakeGarbageCollected("print"))); return *static_print_eval; } static StyleSheetContents* ParseUASheet(const String& str) { // UA stylesheets always parse in the insecure context mode. StyleSheetContents* sheet = StyleSheetContents::Create(CSSParserContext::Create( kUASheetMode, SecureContextMode::kInsecureContext)); sheet->ParseString(str); // User Agent stylesheets are parsed once for the lifetime of the renderer // process and are intentionally leaked. LEAK_SANITIZER_IGNORE_OBJECT(sheet); return sheet; } CSSDefaultStyleSheets::CSSDefaultStyleSheets() : media_controls_style_sheet_loader_(nullptr) { // Strict-mode rules. String default_rules = GetDataResourceAsASCIIString("html.css") + LayoutTheme::GetTheme().ExtraDefaultStyleSheet(); default_style_sheet_ = ParseUASheet(default_rules); // Quirks-mode rules. String quirks_rules = GetDataResourceAsASCIIString("quirks.css") + LayoutTheme::GetTheme().ExtraQuirksStyleSheet(); quirks_style_sheet_ = ParseUASheet(quirks_rules); InitializeDefaultStyles(); #if DCHECK_IS_ON() default_style_->CompactRulesIfNeeded(); default_print_style_->CompactRulesIfNeeded(); default_quirks_style_->CompactRulesIfNeeded(); DCHECK(default_style_->UniversalRules()->IsEmpty()); DCHECK(default_print_style_->UniversalRules()->IsEmpty()); DCHECK(default_quirks_style_->UniversalRules()->IsEmpty()); #endif } void CSSDefaultStyleSheets::PrepareForLeakDetection() { // Clear the optional style sheets. media_controls_style_sheet_.Clear(); mobile_viewport_style_sheet_.Clear(); television_viewport_style_sheet_.Clear(); xhtml_mobile_profile_style_sheet_.Clear(); svg_style_sheet_.Clear(); mathml_style_sheet_.Clear(); fullscreen_style_sheet_.Clear(); // Initialize the styles that have the lazily loaded style sheets. InitializeDefaultStyles(); default_view_source_style_.Clear(); } void CSSDefaultStyleSheets::InitializeDefaultStyles() { // This must be called only from constructor / PrepareForLeakDetection. default_style_ = RuleSet::Create(); default_print_style_ = RuleSet::Create(); default_quirks_style_ = RuleSet::Create(); default_style_->AddRulesFromSheet(DefaultStyleSheet(), ScreenEval()); default_print_style_->AddRulesFromSheet(DefaultStyleSheet(), PrintEval()); default_quirks_style_->AddRulesFromSheet(QuirksStyleSheet(), ScreenEval()); } RuleSet* CSSDefaultStyleSheets::DefaultViewSourceStyle() { if (!default_view_source_style_) { default_view_source_style_ = RuleSet::Create(); // Loaded stylesheet is leaked on purpose. StyleSheetContents* stylesheet = ParseUASheet(GetDataResourceAsASCIIString("view-source.css")); default_view_source_style_->AddRulesFromSheet(stylesheet, ScreenEval()); } return default_view_source_style_; } StyleSheetContents* CSSDefaultStyleSheets::EnsureXHTMLMobileProfileStyleSheet() { if (!xhtml_mobile_profile_style_sheet_) { xhtml_mobile_profile_style_sheet_ = ParseUASheet(GetDataResourceAsASCIIString("xhtmlmp.css")); } return xhtml_mobile_profile_style_sheet_; } StyleSheetContents* CSSDefaultStyleSheets::EnsureMobileViewportStyleSheet() { if (!mobile_viewport_style_sheet_) { mobile_viewport_style_sheet_ = ParseUASheet(GetDataResourceAsASCIIString("viewportAndroid.css")); } return mobile_viewport_style_sheet_; } StyleSheetContents* CSSDefaultStyleSheets::EnsureTelevisionViewportStyleSheet() { if (!television_viewport_style_sheet_) { television_viewport_style_sheet_ = ParseUASheet(GetDataResourceAsASCIIString("viewportTelevision.css")); } return television_viewport_style_sheet_; } bool CSSDefaultStyleSheets::EnsureDefaultStyleSheetsForElement( const Element& element) { bool changed_default_style = false; // FIXME: We should assert that the sheet only styles SVG elements. if (element.IsSVGElement() && !svg_style_sheet_) { svg_style_sheet_ = ParseUASheet(GetDataResourceAsASCIIString("svg.css")); default_style_->AddRulesFromSheet(SvgStyleSheet(), ScreenEval()); default_print_style_->AddRulesFromSheet(SvgStyleSheet(), PrintEval()); changed_default_style = true; } // FIXME: We should assert that the sheet only styles MathML elements. if (element.namespaceURI() == mathml_names::kNamespaceURI && !mathml_style_sheet_) { mathml_style_sheet_ = ParseUASheet(GetDataResourceAsASCIIString("mathml.css")); default_style_->AddRulesFromSheet(MathmlStyleSheet(), ScreenEval()); default_print_style_->AddRulesFromSheet(MathmlStyleSheet(), PrintEval()); changed_default_style = true; } if (!media_controls_style_sheet_ && HasMediaControlsStyleSheetLoader() && (IsHTMLVideoElement(element) || IsHTMLAudioElement(element))) { // FIXME: We should assert that this sheet only contains rules for