| // Copyright 2014 Google Inc. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include "cobalt/dom/document.h" |
| |
| #include <vector> |
| |
| #include "base/bind.h" |
| #include "base/bind_helpers.h" |
| #include "base/compiler_specific.h" |
| #include "base/debug/trace_event.h" |
| #include "base/message_loop.h" |
| #include "base/string_util.h" |
| #include "cobalt/base/tokens.h" |
| #include "cobalt/cssom/css_media_rule.h" |
| #include "cobalt/cssom/css_rule.h" |
| #include "cobalt/cssom/css_rule_list.h" |
| #include "cobalt/cssom/css_style_rule.h" |
| #include "cobalt/cssom/css_style_sheet.h" |
| #include "cobalt/dom/benchmark_stat_names.h" |
| #include "cobalt/dom/comment.h" |
| #include "cobalt/dom/csp_delegate.h" |
| #include "cobalt/dom/csp_delegate_factory.h" |
| #include "cobalt/dom/dom_exception.h" |
| #include "cobalt/dom/dom_implementation.h" |
| #include "cobalt/dom/element.h" |
| #include "cobalt/dom/font_cache.h" |
| #include "cobalt/dom/font_face_updater.h" |
| #include "cobalt/dom/html_body_element.h" |
| #include "cobalt/dom/html_collection.h" |
| #include "cobalt/dom/html_element.h" |
| #include "cobalt/dom/html_element_factory.h" |
| #include "cobalt/dom/html_head_element.h" |
| #include "cobalt/dom/html_html_element.h" |
| #include "cobalt/dom/html_script_element.h" |
| #include "cobalt/dom/initial_computed_style.h" |
| #include "cobalt/dom/keyframes_map_updater.h" |
| #include "cobalt/dom/location.h" |
| #include "cobalt/dom/named_node_map.h" |
| #include "cobalt/dom/node_descendants_iterator.h" |
| #include "cobalt/dom/text.h" |
| #include "cobalt/dom/ui_event.h" |
| #include "cobalt/dom/window.h" |
| #include "cobalt/script/global_environment.h" |
| #include "nb/memory_scope.h" |
| |
| namespace cobalt { |
| namespace dom { |
| |
| Document::Document(HTMLElementContext* html_element_context, |
| const Options& options) |
| : ALLOW_THIS_IN_INITIALIZER_LIST(Node(this)), |
| html_element_context_(html_element_context), |
| window_(options.window), |
| implementation_(new DOMImplementation(html_element_context)), |
| ALLOW_THIS_IN_INITIALIZER_LIST( |
| style_sheets_(new cssom::StyleSheetList(this))), |
| loading_counter_(0), |
| should_dispatch_load_event_(true), |
| is_selector_tree_dirty_(true), |
| is_computed_style_dirty_(true), |
| are_font_faces_dirty_(true), |
| are_keyframes_dirty_(true), |
| #if defined(ENABLE_PARTIAL_LAYOUT_CONTROL) |
| partial_layout_is_enabled_(true), |
| #endif // defined(ENABLE_PARTIAL_LAYOUT_CONTROL) |
| navigation_start_clock_(options.navigation_start_clock), |
| ALLOW_THIS_IN_INITIALIZER_LIST( |
| default_timeline_(new DocumentTimeline(this, 0))), |
| user_agent_style_sheet_(options.user_agent_style_sheet), |
| initial_computed_style_declaration_( |
| new cssom::CSSComputedStyleDeclaration()), |
| dom_max_element_depth_(options.dom_max_element_depth) { |
| DCHECK(html_element_context_); |
| DCHECK(options.url.is_empty() || options.url.is_valid()); |
| |
| if (options.viewport_size) { |
| SetViewport(*options.viewport_size); |
| } |
| |
| scoped_ptr<CspViolationReporter> violation_reporter( |
| new CspViolationReporter(this, options.post_sender)); |
| csp_delegate_ = |
| CspDelegateFactory::GetInstance() |
| ->Create(options.csp_enforcement_mode, violation_reporter.Pass(), |
| options.url, options.location_policy, |
| options.csp_policy_changed_callback, |
| options.csp_insecure_allowed_token) |
| .Pass(); |
| |
| cookie_jar_ = options.cookie_jar; |
| |
| location_ = new Location( |
| options.url, options.hashchange_callback, options.navigation_callback, |
| base::Bind(&CspDelegate::CanLoad, base::Unretained(csp_delegate_.get()), |
| CspDelegate::kLocation)); |
| |
| font_cache_.reset(new FontCache( |
| html_element_context_->resource_provider(), |
| html_element_context_->remote_typeface_cache(), |
| base::Bind(&Document::OnTypefaceLoadEvent, base::Unretained(this)), |
| html_element_context_->language())); |
| |
| if (HasBrowsingContext()) { |
| if (html_element_context_->remote_typeface_cache()) { |
| html_element_context_->remote_typeface_cache()->set_security_callback( |
| base::Bind(&CspDelegate::CanLoad, |
| base::Unretained(csp_delegate_.get()), |
| CspDelegate::kFont)); |
| } |
| |
| if (html_element_context_->image_cache()) { |
| html_element_context_->image_cache()->set_security_callback(base::Bind( |
| &CspDelegate::CanLoad, base::Unretained(csp_delegate_.get()), |
| CspDelegate::kImage)); |
| } |
| } |
| |
| // Sample the timeline upon initialization. |
| SampleTimelineTime(); |
| |
| // Call OnInsertedIntoDocument() immediately to ensure that the Document |
| // object itself is considered to be "in the document". |
| OnInsertedIntoDocument(); |
| } |
| |
| base::Token Document::node_name() const { |
| return base::Tokens::document_name(); |
| } |
| |
| scoped_refptr<Element> Document::document_element() const { |
| return first_element_child(); |
| } |
| |
| scoped_refptr<Window> Document::default_view() const { return window_; } |
| |
| std::string Document::title() const { |
| const char kTitleTag[] = "title"; |
| if (head()) { |
| scoped_refptr<HTMLCollection> collection = |
| head()->GetElementsByTagName(kTitleTag); |
| if (collection->length() > 0) { |
| return collection->Item(0)->text_content().value_or(""); |
| } |
| } |
| return ""; |
| } |
| |
| scoped_refptr<DOMImplementation> Document::implementation() { |
| return implementation_; |
| } |
| |
| // Algorithm for GetElementsByTagName: |
| // https://www.w3.org/TR/dom/#concept-getelementsbytagname |
| scoped_refptr<HTMLCollection> Document::GetElementsByTagName( |
| const std::string& local_name) const { |
| // 2. If the document is not an HTML document, then return an HTML collection |
| // whose name is local name. If it is an HTML document, then return an, |
| // HTML collection whose name is local name converted to ASCII lowercase. |
| if (IsXMLDocument()) { |
| return HTMLCollection::CreateWithElementsByLocalName(this, local_name); |
| } else { |
| const std::string lower_local_name = StringToLowerASCII(local_name); |
| return HTMLCollection::CreateWithElementsByLocalName(this, |
| lower_local_name); |
| } |
| } |
| |
| scoped_refptr<HTMLCollection> Document::GetElementsByClassName( |
| const std::string& class_names) const { |
| return HTMLCollection::CreateWithElementsByClassName(this, class_names); |
| } |
| |
| scoped_refptr<Element> Document::CreateElement(const std::string& local_name) { |
| if (IsXMLDocument()) { |
| return new Element(this, base::Token(local_name)); |
| } else { |
| std::string lower_local_name = local_name; |
| StringToLowerASCII(&lower_local_name); |
| DCHECK(html_element_context_->html_element_factory()); |
| return html_element_context_->html_element_factory()->CreateHTMLElement( |
| this, base::Token(lower_local_name)); |
| } |
| } |
| |
| scoped_refptr<Element> Document::CreateElementNS( |
| const std::string& namespace_uri, const std::string& local_name) { |
| // TODO: Implement namespaces, if we actually need this. |
| UNREFERENCED_PARAMETER(namespace_uri); |
| return CreateElement(local_name); |
| } |
| |
| scoped_refptr<Text> Document::CreateTextNode(const std::string& data) { |
| return new Text(this, data); |
| } |
| |
| scoped_refptr<Comment> Document::CreateComment(const std::string& data) { |
| return new Comment(this, data); |
| } |
| |
| scoped_refptr<Event> Document::CreateEvent( |
| const std::string& interface_name, |
| script::ExceptionState* exception_state) { |
| TRACK_MEMORY_SCOPE("DOM"); |
| // https://www.w3.org/TR/2015/WD-dom-20150428/#dom-document-createevent |
| // The match of interface name is case-insensitive. |
| if (base::strcasecmp(interface_name.c_str(), "event") == 0 || |
| base::strcasecmp(interface_name.c_str(), "events") == 0) { |
| return new Event(Event::Uninitialized); |
| } else if (base::strcasecmp(interface_name.c_str(), "uievent") == 0 || |
| base::strcasecmp(interface_name.c_str(), "uievents") == 0) { |
| return new UIEvent(Event::Uninitialized); |
| } |
| |
| DOMException::Raise( |
| DOMException::kNotSupportedErr, |
| "document.createEvent does not support \"" + interface_name + "\".", |
| exception_state); |
| |
| // Return value will be ignored. |
| return NULL; |
| } |
| |
| scoped_refptr<Element> Document::GetElementById(const std::string& id) const { |
| NodeDescendantsIterator iterator(this); |
| |
| // TODO: Consider optimizing this method by replacing the linear |
| // search with a constant time lookup. |
| Node* child = iterator.First(); |
| while (child) { |
| scoped_refptr<Element> element = child->AsElement(); |
| if (element && element->id() == id) { |
| return element; |
| } |
| child = iterator.Next(); |
| } |
| return NULL; |
| } |
| |
| const scoped_refptr<Location>& Document::location() const { return location_; } |
| |
| // Algorithm for body: |
| // https://www.w3.org/TR/html5/dom.html#dom-document-body |
| scoped_refptr<HTMLBodyElement> Document::body() const { |
| // The body element of a document is the first child of the html element that |
| // is either a body element or a frameset element. If there is no such |
| // element, it is null. |
| // https://www.w3.org/TR/html5/dom.html#the-body-element-0 |
| HTMLHtmlElement* html_element = html(); |
| if (!html_element) { |
| return NULL; |
| } |
| for (Element* child = html_element->first_element_child(); child; |
| child = child->next_element_sibling()) { |
| HTMLElement* child_html_element = child->AsHTMLElement(); |
| if (child_html_element) { |
| HTMLBodyElement* body_element = child_html_element->AsHTMLBodyElement(); |
| if (body_element) { |
| return body_element; |
| } |
| } |
| } |
| return NULL; |
| } |
| |
| // Algorithm for set_body: |
| // https://www.w3.org/TR/html5/dom.html#dom-document-body |
| void Document::set_body(const scoped_refptr<HTMLBodyElement>& body) { |
| // 1. If the new value is not a body or frameset element, then throw a |
| // HierarchyRequestError exception and abort these steps. |
| // 2. Otherwise, if the new value is the same as the body element, do nothing. |
| // Abort these steps. |
| scoped_refptr<HTMLBodyElement> current_body = this->body(); |
| if (current_body == body) { |
| return; |
| } |
| |
| // 3. Otherwise, if the body element is not null, then replace that element |
| // with the new value in the DOM, as if the root element's replaceChild() |
| // method had been called with the new value and the incumbent body element |
| // as its two arguments respectively, then abort these steps. |
| // 4. Otherwise, if there is no root element, throw a HierarchyRequestError |
| // exception and abort these steps. |
| // 5. Otherwise, the body element is null, but there's a root element. Append |
| // the new value to the root element. |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (!current_html) { |
| // TODO: Throw JS HierarchyRequestError. |
| return; |
| } |
| if (current_body) { |
| current_html->ReplaceChild(body, current_body); |
| } else { |
| current_html->AppendChild(body); |
| } |
| } |
| |
| // Algorithm for head: |
| // https://www.w3.org/TR/html5/dom.html#dom-document-head |
| scoped_refptr<HTMLHeadElement> Document::head() const { |
| // The head element of a document is the first head element that is a child of |
| // the html element, if there is one, or null otherwise. |
| // https://www.w3.org/TR/html5/dom.html#the-head-element-0 |
| HTMLHtmlElement* html_element = html(); |
| if (!html_element) { |
| return NULL; |
| } |
| for (Element* child = html_element->first_element_child(); child; |
| child = child->next_element_sibling()) { |
| HTMLElement* child_html_element = child->AsHTMLElement(); |
| if (child_html_element) { |
| HTMLHeadElement* head_element = child_html_element->AsHTMLHeadElement(); |
| if (head_element) { |
| return head_element; |
| } |
| } |
| } |
| return NULL; |
| } |
| |
| scoped_refptr<Element> Document::active_element() const { |
| if (!active_element_) { |
| return body(); |
| } else { |
| return active_element_.get(); |
| } |
| } |
| |
| void Document::set_cookie(const std::string& cookie) { |
| #if defined(COBALT_BUILD_TYPE_GOLD) |
| UNREFERENCED_PARAMETER(cookie); |
| #else |
| if (cookie_jar_) { |
| cookie_jar_->SetCookie(url_as_gurl(), cookie); |
| } |
| #endif |
| } |
| |
| std::string Document::cookie() const { |
| #if defined(COBALT_BUILD_TYPE_GOLD) |
| return std::string(); |
| #else |
| if (cookie_jar_) { |
| return cookie_jar_->GetCookies(url_as_gurl()); |
| } else { |
| DLOG(WARNING) << "Document has no cookie jar"; |
| return ""; |
| } |
| #endif |
| } |
| |
| void Document::Accept(NodeVisitor* visitor) { visitor->Visit(this); } |
| |
| void Document::Accept(ConstNodeVisitor* visitor) const { visitor->Visit(this); } |
| |
| scoped_refptr<Node> Document::Duplicate() const { |
| // For Document, copy Its encoding, content type, URL, its mode (quirks mode, |
| // limited quirks mode, or no-quirks mode), and its type (XML document or HTML |
| // document). |
| // https://www.w3.org/TR/dom/#concept-node-clone |
| return new Document(html_element_context_, Document::Options(url_as_gurl())); |
| } |
| |
| scoped_refptr<HTMLHtmlElement> Document::html() const { |
| // The html element of a document is the document's root element, if there is |
| // one and it's an html element, or null otherwise. |
| // https://www.w3.org/TR/html5/dom.html#the-html-element-0 |
| Element* root = document_element(); |
| if (!root) { |
| return NULL; |
| } |
| HTMLElement* root_html_element = root->AsHTMLElement(); |
| return root_html_element ? root_html_element->AsHTMLHtmlElement() : NULL; |
| } |
| |
| void Document::SetActiveElement(Element* active_element) { |
| // Invalidate matching rules on old and new active element. |
| if (active_element_) { |
| HTMLElement* html_element = active_element_->AsHTMLElement(); |
| if (html_element) { |
| html_element->InvalidateMatchingRulesRecursively(); |
| } |
| } |
| if (active_element) { |
| HTMLElement* html_element = active_element->AsHTMLElement(); |
| if (html_element) { |
| html_element->InvalidateMatchingRulesRecursively(); |
| } |
| active_element_ = base::AsWeakPtr(active_element); |
| } else { |
| active_element_.reset(); |
| } |
| |
| // Record mutation and trigger layout. |
| is_computed_style_dirty_ = true; |
| RecordMutation(); |
| FOR_EACH_OBSERVER(DocumentObserver, observers_, OnFocusChanged()); |
| } |
| |
| void Document::IncreaseLoadingCounter() { ++loading_counter_; } |
| |
| void Document::DecreaseLoadingCounter() { --loading_counter_; } |
| |
| void Document::DecreaseLoadingCounterAndMaybeDispatchLoadEvent() { |
| DCHECK_GT(loading_counter_, 0); |
| loading_counter_--; |
| if (loading_counter_ == 0 && should_dispatch_load_event_) { |
| DCHECK(MessageLoop::current()); |
| should_dispatch_load_event_ = false; |
| |
| MessageLoop::current()->PostTask( |
| FROM_HERE, base::Bind(&Document::DispatchOnLoadEvent, |
| base::AsWeakPtr<Document>(this))); |
| |
| HTMLBodyElement* body_element = body(); |
| if (body_element) { |
| body_element->PostToDispatchEvent(FROM_HERE, base::Tokens::load()); |
| } |
| } |
| } |
| |
| void Document::AddObserver(DocumentObserver* observer) { |
| observers_.AddObserver(observer); |
| } |
| |
| void Document::RemoveObserver(DocumentObserver* observer) { |
| observers_.RemoveObserver(observer); |
| } |
| |
| void Document::SignalOnLoadToObservers() { |
| FOR_EACH_OBSERVER(DocumentObserver, observers_, OnLoad()); |
| } |
| |
| void Document::RecordMutation() { |
| TRACE_EVENT0("cobalt::dom", "Document::RecordMutation()"); |
| |
| FOR_EACH_OBSERVER(DocumentObserver, observers_, OnMutation()); |
| } |
| |
| void Document::DoSynchronousLayout() { |
| TRACE_EVENT0("cobalt::dom", "Document::DoSynchronousLayout()"); |
| |
| if (!synchronous_layout_callback_.is_null()) { |
| synchronous_layout_callback_.Run(); |
| } |
| } |
| |
| void Document::NotifyUrlChanged(const GURL& url) { |
| location_->set_url(url); |
| csp_delegate_->NotifyUrlChanged(url); |
| } |
| |
| void Document::OnCSSMutation() { |
| // Something in the document's CSS rules has been modified, but we don't know |
| // what, so set the flag indicating that rule matching needs to be done. |
| is_selector_tree_dirty_ = true; |
| is_computed_style_dirty_ = true; |
| are_font_faces_dirty_ = true; |
| are_keyframes_dirty_ = true; |
| |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateComputedStylesOfNodeAndDescendants(); |
| } |
| |
| RecordMutation(); |
| } |
| |
| void Document::OnDOMMutation() { |
| // Something in the document's DOM has been modified, but we don't know what, |
| // so set the flag indicating that rule matching needs to be done. |
| is_computed_style_dirty_ = true; |
| |
| RecordMutation(); |
| } |
| |
| void Document::OnTypefaceLoadEvent() { |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateLayoutBoxesOfNodeAndDescendants(); |
| } |
| RecordMutation(); |
| } |
| |
| void Document::OnElementInlineStyleMutation() { |
| is_computed_style_dirty_ = true; |
| |
| RecordMutation(); |
| } |
| |
| namespace { |
| |
| void RemoveRulesFromCSSRuleListFromSelectorTree( |
| cssom::SelectorTree* selector_tree, |
| const scoped_refptr<cssom::CSSRuleList>& css_rule_list) { |
| for (unsigned int i = 0; i < css_rule_list->length(); ++i) { |
| cssom::CSSRule* rule = css_rule_list->Item(i); |
| |
| cssom::CSSStyleRule* css_style_rule = rule->AsCSSStyleRule(); |
| if (css_style_rule && css_style_rule->added_to_selector_tree()) { |
| selector_tree->RemoveRule(css_style_rule); |
| css_style_rule->set_added_to_selector_tree(false); |
| } |
| |
| cssom::CSSMediaRule* css_media_rule = rule->AsCSSMediaRule(); |
| if (css_media_rule) { |
| RemoveRulesFromCSSRuleListFromSelectorTree(selector_tree, |
| css_media_rule->css_rules()); |
| } |
| } |
| } |
| |
| void AppendRulesFromCSSRuleListToSelectorTree( |
| cssom::SelectorTree* selector_tree, |
| const scoped_refptr<cssom::CSSRuleList>& css_rule_list) { |
| for (unsigned int i = 0; i < css_rule_list->length(); ++i) { |
| cssom::CSSRule* rule = css_rule_list->Item(i); |
| |
| cssom::CSSStyleRule* css_style_rule = rule->AsCSSStyleRule(); |
| if (css_style_rule && !css_style_rule->added_to_selector_tree()) { |
| selector_tree->AppendRule(css_style_rule); |
| css_style_rule->set_added_to_selector_tree(true); |
| } |
| |
| cssom::CSSMediaRule* css_media_rule = rule->AsCSSMediaRule(); |
| if (css_media_rule) { |
| if (css_media_rule->condition_value()) { |
| AppendRulesFromCSSRuleListToSelectorTree(selector_tree, |
| css_media_rule->css_rules()); |
| } else { |
| RemoveRulesFromCSSRuleListFromSelectorTree(selector_tree, |
| css_media_rule->css_rules()); |
| } |
| } |
| } |
| } |
| |
| void UpdateSelectorTreeFromCSSStyleSheet( |
| cssom::SelectorTree* selector_tree, |
| const scoped_refptr<cssom::CSSStyleSheet>& style_sheet) { |
| AppendRulesFromCSSRuleListToSelectorTree(selector_tree, |
| style_sheet->css_rules()); |
| } |
| |
| } // namespace |
| |
| void Document::UpdateComputedStyles() { |
| TRACE_EVENT0("cobalt::dom", "Document::UpdateComputedStyles()"); |
| |
| UpdateSelectorTree(); |
| UpdateKeyframes(); |
| UpdateFontFaces(); |
| |
| if (is_computed_style_dirty_) { |
| TRACE_EVENT0("cobalt::layout", kBenchmarkStatUpdateComputedStyles); |
| base::StopWatch stop_watch_update_compute_style( |
| DomStatTracker::kStopWatchTypeUpdateComputedStyle, |
| base::StopWatch::kAutoStartOn, |
| html_element_context_->dom_stat_tracker()); |
| |
| // Determine the official time that this style change event took place. This |
| // is needed (as opposed to repeatedly calling base::Time::Now()) because |
| // all animations that may be triggered here must start at the exact same |
| // time if they were triggered in the same style change event. |
| // https://www.w3.org/TR/css3-transitions/#starting |
| base::TimeDelta style_change_event_time = |
| base::TimeDelta::FromMillisecondsD(*default_timeline_->current_time()); |
| |
| scoped_refptr<HTMLElement> root = html(); |
| if (root) { |
| // First update the computed style for root element. |
| root->UpdateComputedStyle(initial_computed_style_declaration_, |
| initial_computed_style_data_, |
| style_change_event_time); |
| |
| // Then update the computed styles for the other elements. |
| root->UpdateComputedStyleRecursively( |
| root->css_computed_style_declaration(), root->computed_style(), |
| style_change_event_time, true, 0 /* current_element_depth */); |
| } |
| |
| is_computed_style_dirty_ = false; |
| } |
| } |
| |
| void Document::SampleTimelineTime() { default_timeline_->Sample(); } |
| |
| #if defined(ENABLE_PARTIAL_LAYOUT_CONTROL) |
| void Document::SetPartialLayout(const std::string& mode_string) { |
| std::vector<std::string> mode_tokens; |
| Tokenize(mode_string, ",", &mode_tokens); |
| for (std::vector<std::string>::iterator mode_token_iterator = |
| mode_tokens.begin(); |
| mode_token_iterator != mode_tokens.end(); ++mode_token_iterator) { |
| const std::string& mode_token = *mode_token_iterator; |
| if (mode_token == "wipe") { |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateLayoutBoxesOfNodeAndDescendants(); |
| } |
| DLOG(INFO) << "Partial Layout state wiped"; |
| } else if (mode_token == "off") { |
| partial_layout_is_enabled_ = false; |
| DLOG(INFO) << "Partial Layout mode turned off"; |
| } else if (mode_token == "on") { |
| partial_layout_is_enabled_ = true; |
| DLOG(INFO) << "Partial Layout mode turned on"; |
| } else if (mode_token == "undefined") { |
| DLOG(INFO) << "Partial Layout mode is currently " |
| << (partial_layout_is_enabled_ ? "on" : "off"); |
| } else { |
| DLOG(WARNING) << "Partial Layout mode \"" << mode_string |
| << "\" not recognized."; |
| } |
| } |
| } |
| #endif // defined(ENABLE_PARTIAL_LAYOUT_CONTROL) |
| |
| void Document::SetViewport(const math::Size& viewport_size) { |
| viewport_size_ = viewport_size; |
| initial_computed_style_data_ = CreateInitialComputedStyle(*viewport_size_); |
| initial_computed_style_declaration_->SetData(initial_computed_style_data_); |
| |
| is_computed_style_dirty_ = true; |
| is_selector_tree_dirty_ = true; |
| |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateComputedStylesOfNodeAndDescendants(); |
| } |
| } |
| |
| Document::~Document() { |
| // Ensure that all outstanding weak ptrs become invalid. |
| // Some objects that will be released while this destructor runs may |
| // have weak ptrs to |this|. |
| InvalidateWeakPtrs(); |
| } |
| |
| void Document::UpdateSelectorTree() { |
| TRACE_EVENT0("cobalt::dom", "Document::UpdateSelectorTree()"); |
| if (is_selector_tree_dirty_) { |
| TRACE_EVENT0("cobalt::dom", kBenchmarkStatUpdateSelectorTree); |
| |
| UpdateMediaRules(); |
| |
| if (user_agent_style_sheet_) { |
| UpdateSelectorTreeFromCSSStyleSheet(&selector_tree_, |
| user_agent_style_sheet_); |
| } |
| for (unsigned int style_sheet_index = 0; |
| style_sheet_index < style_sheets_->length(); ++style_sheet_index) { |
| scoped_refptr<cssom::CSSStyleSheet> css_style_sheet = |
| style_sheets_->Item(style_sheet_index)->AsCSSStyleSheet(); |
| |
| UpdateSelectorTreeFromCSSStyleSheet(&selector_tree_, css_style_sheet); |
| } |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateMatchingRulesRecursively(); |
| } |
| |
| is_selector_tree_dirty_ = false; |
| } |
| } |
| |
| void Document::PurgeCachedResources() { |
| // Set the font faces to dirty prior to purging the font cache so that they'll |
| // be restored when processing resumes. |
| are_font_faces_dirty_ = true; |
| font_cache_->PurgeCachedResources(); |
| |
| // Set the computed style to dirty so that it'll be able to update any |
| // elements that had images purged when processing resumes. |
| is_computed_style_dirty_ = true; |
| |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->PurgeCachedBackgroundImagesOfNodeAndDescendants(); |
| } |
| } |
| |
| void Document::InvalidateLayoutBoxes() { |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateLayoutBoxesOfNodeAndDescendants(); |
| } |
| } |
| |
| void Document::DisableJit() { |
| window_->html_element_context() |
| ->script_runner() |
| ->GetGlobalEnvironment() |
| ->DisableJit(); |
| } |
| |
| void Document::TraceMembers(script::Tracer* tracer) { |
| Node::TraceMembers(tracer); |
| |
| tracer->Trace(implementation_); |
| tracer->Trace(style_sheets_); |
| for (std::deque<HTMLScriptElement*>::iterator it = |
| scripts_to_be_executed_.begin(); |
| it != scripts_to_be_executed_.end(); ++it) { |
| tracer->Trace(static_cast<Wrappable*>(*it)); |
| } |
| for (cssom::CSSKeyframesRule::NameMap::iterator it = keyframes_map_.begin(); |
| it != keyframes_map_.end(); ++it) { |
| tracer->Trace(it->second); |
| } |
| tracer->Trace(location_); |
| tracer->Trace(user_agent_style_sheet_); |
| tracer->Trace(initial_computed_style_declaration_); |
| } |
| |
| void Document::DispatchOnLoadEvent() { |
| TRACE_EVENT0("cobalt::dom", "Document::DispatchOnLoadEvent()"); |
| |
| if (HasBrowsingContext()) { |
| // Update the current timeline sample time and then update computed styles |
| // before dispatching the onload event. This guarantees that computed |
| // styles have been calculated before JavaScript executes onload event |
| // handlers, which may wish to start a CSS Transition (requiring that |
| // computed values previously exist). |
| SampleTimelineTime(); |
| UpdateComputedStyles(); |
| } |
| |
| // Dispatch the document's onload event. |
| DispatchEvent(new Event(base::Tokens::load())); |
| |
| // After all JavaScript OnLoad event handlers have executed, signal to let |
| // any Document observers know that a load event has occurred. |
| SignalOnLoadToObservers(); |
| } |
| |
| void Document::UpdateMediaRules() { |
| TRACE_EVENT0("cobalt::dom", "Document::UpdateMediaRules()"); |
| if (viewport_size_) { |
| if (user_agent_style_sheet_) { |
| user_agent_style_sheet_->EvaluateMediaRules(*viewport_size_); |
| } |
| for (unsigned int style_sheet_index = 0; |
| style_sheet_index < style_sheets_->length(); ++style_sheet_index) { |
| scoped_refptr<cssom::CSSStyleSheet> css_style_sheet = |
| style_sheets_->Item(style_sheet_index)->AsCSSStyleSheet(); |
| |
| css_style_sheet->EvaluateMediaRules(*viewport_size_); |
| } |
| } |
| } |
| |
| void Document::UpdateFontFaces() { |
| TRACE_EVENT0("cobalt::dom", "Document::UpdateFontFaces()"); |
| if (are_font_faces_dirty_) { |
| FontFaceUpdater font_face_updater(location_->url(), font_cache_.get()); |
| font_face_updater.ProcessCSSStyleSheet(user_agent_style_sheet_); |
| font_face_updater.ProcessStyleSheetList(style_sheets()); |
| are_font_faces_dirty_ = false; |
| } |
| } |
| |
| void Document::UpdateKeyframes() { |
| TRACE_EVENT0("cobalt::layout", "Document::UpdateKeyframes()"); |
| if (are_keyframes_dirty_) { |
| KeyframesMapUpdater keyframes_map_updater(&keyframes_map_); |
| keyframes_map_updater.ProcessCSSStyleSheet(user_agent_style_sheet_); |
| keyframes_map_updater.ProcessStyleSheetList(style_sheets()); |
| are_keyframes_dirty_ = false; |
| |
| // This should eventually be altered to only invalidate the tree when the |
| // the keyframes map changed. |
| scoped_refptr<HTMLHtmlElement> current_html = html(); |
| if (current_html) { |
| current_html->InvalidateComputedStylesOfNodeAndDescendants(); |
| } |
| } |
| } |
| |
| } // namespace dom |
| } // namespace cobalt |