/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ //! A safe wrapper for DOM nodes that prevents layout from mutating the DOM, from letting DOM nodes //! escape, and from generally doing anything that it isn't supposed to. This is accomplished via //! a simple whitelist of allowed operations, along with some lifetime magic to prevent nodes from //! escaping. //! //! As a security wrapper is only as good as its whitelist, be careful when adding operations to //! this list. The cardinal rules are: //! //! 1. Layout is not allowed to mutate the DOM. //! //! 2. Layout is not allowed to see anything with `LayoutJS` in the name, because it could hang //! onto these objects and cause use-after-free. //! //! When implementing wrapper functions, be careful that you do not touch the borrow flags, or you //! will race and cause spurious task failure. (Note that I do not believe these races are //! exploitable, but they'll result in brokenness nonetheless.) //! //! Rules of the road for this file: //! //! * Do not call any methods on DOM nodes without checking to see whether they use borrow flags. //! //! o Instead of `get_attr()`, use `.get_attr_val_for_layout()`. //! //! o Instead of `html_element_in_html_document()`, use //! `html_element_in_html_document_for_layout()`. #![allow(unsafe_code)] use data::{LayoutDataFlags, LayoutDataWrapper, PrivateLayoutData}; use gfx::display_list::OpaqueNode; use gfx::text::glyph::CharIndex; use incremental::RestyleDamage; use msg::constellation_msg::PipelineId; use opaque_node::OpaqueNodeMethods; use script::dom::attr::AttrValue; use script::dom::bindings::inheritance::{Castable, CharacterDataTypeId, ElementTypeId}; use script::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; use script::dom::bindings::js::LayoutJS; use script::dom::characterdata::LayoutCharacterDataHelpers; use script::dom::document::{Document, LayoutDocumentHelpers}; use script::dom::element::{Element, LayoutElementHelpers, RawLayoutElementHelpers}; use script::dom::htmlcanvaselement::{LayoutHTMLCanvasElementHelpers, HTMLCanvasData}; use script::dom::htmliframeelement::HTMLIFrameElement; use script::dom::htmlimageelement::LayoutHTMLImageElementHelpers; use script::dom::htmlinputelement::{HTMLInputElement, LayoutHTMLInputElementHelpers}; use script::dom::htmltextareaelement::{HTMLTextAreaElement, LayoutHTMLTextAreaElementHelpers}; use script::dom::node::{HAS_CHANGED, HAS_DIRTY_DESCENDANTS, IS_DIRTY}; use script::dom::node::{LayoutNodeHelpers, Node, SharedLayoutData}; use script::dom::text::Text; use script::layout_interface::TrustedNodeAddress; use selectors::matching::DeclarationBlock; use selectors::parser::{AttrSelector, NamespaceConstraint}; use selectors::states::*; use smallvec::VecLike; use std::borrow::ToOwned; use std::cell::{Ref, RefMut}; use std::marker::PhantomData; use std::mem; use std::sync::Arc; use string_cache::{Atom, Namespace}; use style::computed_values::content::ContentItem; use style::computed_values::{content, display, white_space}; use style::node::TElementAttributes; use style::properties::ComputedValues; use style::properties::{PropertyDeclaration, PropertyDeclarationBlock}; use style::restyle_hints::{ElementSnapshot, RESTYLE_DESCENDANTS, RESTYLE_LATER_SIBLINGS, RESTYLE_SELF, RestyleHint}; use url::Url; use util::str::{is_whitespace, search_index}; /// A wrapper so that layout can access only the methods that it should have access to. Layout must /// only ever see these and must never see instances of `LayoutJS`. #[derive(Copy, Clone)] pub struct LayoutNode<'a> { /// The wrapped node. node: LayoutJS, /// Being chained to a PhantomData prevents `LayoutNode`s from escaping. chain: PhantomData<&'a ()>, } impl<'a> PartialEq for LayoutNode<'a> { #[inline] fn eq(&self, other: &LayoutNode) -> bool { self.node == other.node } } impl<'ln> LayoutNode<'ln> { pub fn from_layout_js(n: LayoutJS) -> LayoutNode<'ln> { LayoutNode { node: n, chain: PhantomData, } } pub unsafe fn new(address: &TrustedNodeAddress) -> LayoutNode { LayoutNode::from_layout_js(LayoutJS::from_trusted_node_address(*address)) } /// Creates a new layout node with the same lifetime as this layout node. pub unsafe fn new_with_this_lifetime(&self, node: &LayoutJS) -> LayoutNode<'ln> { LayoutNode { node: *node, chain: self.chain, } } /// Returns the type ID of this node. pub fn type_id(&self) -> NodeTypeId { unsafe { self.node.type_id_for_layout() } } pub fn is_element(&self) -> bool { unsafe { self.node.is_element_for_layout() } } pub fn dump(self) { self.dump_indent(0); } fn dump_indent(self, indent: u32) { let mut s = String::new(); for _ in 0..indent { s.push_str(" "); } s.push_str(&self.debug_str()); println!("{}", s); for kid in self.children() { kid.dump_indent(indent + 1); } } fn debug_str(self) -> String { format!("{:?}: changed={} dirty={} dirty_descendants={}", self.type_id(), self.has_changed(), self.is_dirty(), self.has_dirty_descendants()) } pub fn flow_debug_id(self) -> usize { let layout_data_ref = self.borrow_layout_data(); match *layout_data_ref { None => 0, Some(ref layout_data) => layout_data.data.flow_construction_result.debug_id() } } pub fn traverse_preorder(self) -> LayoutTreeIterator<'ln> { LayoutTreeIterator::new(self) } /// Returns an iterator over this node's children. pub fn children(self) -> LayoutNodeChildrenIterator<'ln> { LayoutNodeChildrenIterator { current: self.first_child(), } } pub fn rev_children(self) -> LayoutNodeReverseChildrenIterator<'ln> { LayoutNodeReverseChildrenIterator { current: self.last_child() } } /// Returns the interior of this node as a `LayoutJS`. This is highly unsafe for layout to /// call and as such is marked `unsafe`. unsafe fn get_jsmanaged(&self) -> &LayoutJS { &self.node } /// Converts self into an `OpaqueNode`. pub fn opaque(&self) -> OpaqueNode { OpaqueNodeMethods::from_jsmanaged(unsafe { self.get_jsmanaged() }) } /// Resets layout data and styles for the node. /// /// FIXME(pcwalton): Do this as part of fragment building instead of in a traversal. pub fn initialize_layout_data(self) { let mut layout_data_ref = self.mutate_layout_data(); match *layout_data_ref { None => { *layout_data_ref = Some(LayoutDataWrapper { shared_data: SharedLayoutData { style: None }, data: box PrivateLayoutData::new(), }); } Some(_) => {} } } /// While doing a reflow, the node at the root has no parent, as far as we're /// concerned. This method returns `None` at the reflow root. pub fn layout_parent_node(self, reflow_root: OpaqueNode) -> Option> { if self.opaque() == reflow_root { None } else { self.parent_node() } } pub fn debug_id(self) -> usize { self.opaque().to_untrusted_node_address().0 as usize } pub fn as_element(&self) -> Option> { as_element(self.node) } pub fn as_document(&self) -> Option> { self.node.downcast().map(|document| LayoutDocument::from_layout_js(document)) } fn parent_node(&self) -> Option> { unsafe { self.node.parent_node_ref().map(|node| self.new_with_this_lifetime(&node)) } } fn first_child(&self) -> Option> { unsafe { self.node.first_child_ref().map(|node| self.new_with_this_lifetime(&node)) } } fn last_child(&self) -> Option> { unsafe { self.node.last_child_ref().map(|node| self.new_with_this_lifetime(&node)) } } fn prev_sibling(&self) -> Option> { unsafe { self.node.prev_sibling_ref().map(|node| self.new_with_this_lifetime(&node)) } } fn next_sibling(&self) -> Option> { unsafe { self.node.next_sibling_ref().map(|node| self.new_with_this_lifetime(&node)) } } pub fn children_count(&self) -> u32 { unsafe { self.node.children_count() } } } impl<'ln> LayoutNode<'ln> { pub fn has_changed(&self) -> bool { unsafe { self.node.get_flag(HAS_CHANGED) } } pub unsafe fn set_changed(&self, value: bool) { self.node.set_flag(HAS_CHANGED, value) } pub fn is_dirty(&self) -> bool { unsafe { self.node.get_flag(IS_DIRTY) } } pub unsafe fn set_dirty(&self, value: bool) { self.node.set_flag(IS_DIRTY, value) } pub fn has_dirty_descendants(&self) -> bool { unsafe { self.node.get_flag(HAS_DIRTY_DESCENDANTS) } } pub unsafe fn set_dirty_descendants(&self, value: bool) { self.node.set_flag(HAS_DIRTY_DESCENDANTS, value) } /// Borrows the layout data without checks. #[inline(always)] pub unsafe fn borrow_layout_data_unchecked(&self) -> *const Option { mem::transmute(self.get_jsmanaged().layout_data_unchecked()) } /// Borrows the layout data immutably. Fails on a conflicting borrow. #[inline(always)] pub fn borrow_layout_data(&self) -> Ref> { unsafe { mem::transmute(self.get_jsmanaged().layout_data()) } } /// Borrows the layout data mutably. Fails on a conflicting borrow. #[inline(always)] pub fn mutate_layout_data(&self) -> RefMut> { unsafe { mem::transmute(self.get_jsmanaged().layout_data_mut()) } } } pub struct LayoutNodeChildrenIterator<'a> { current: Option>, } impl<'a> Iterator for LayoutNodeChildrenIterator<'a> { type Item = LayoutNode<'a>; fn next(&mut self) -> Option> { let node = self.current; self.current = node.and_then(|node| node.next_sibling()); node } } pub struct LayoutNodeReverseChildrenIterator<'a> { current: Option>, } impl<'a> Iterator for LayoutNodeReverseChildrenIterator<'a> { type Item = LayoutNode<'a>; fn next(&mut self) -> Option> { let node = self.current; self.current = node.and_then(|node| node.prev_sibling()); node } } pub struct LayoutTreeIterator<'a> { stack: Vec>, } impl<'a> LayoutTreeIterator<'a> { fn new(root: LayoutNode<'a>) -> LayoutTreeIterator<'a> { let mut stack = vec!(); stack.push(root); LayoutTreeIterator { stack: stack } } } impl<'a> Iterator for LayoutTreeIterator<'a> { type Item = LayoutNode<'a>; fn next(&mut self) -> Option> { let ret = self.stack.pop(); ret.map(|node| self.stack.extend(node.rev_children())); ret } } // A wrapper around documents that ensures ayout can only ever access safe properties. #[derive(Copy, Clone)] pub struct LayoutDocument<'le> { document: LayoutJS, chain: PhantomData<&'le ()>, } impl<'le> LayoutDocument<'le> { pub fn from_layout_js(doc: LayoutJS) -> LayoutDocument<'le> { LayoutDocument { document: doc, chain: PhantomData, } } pub fn as_node(&self) -> LayoutNode<'le> { LayoutNode::from_layout_js(self.document.upcast()) } pub fn root_node(&self) -> Option> { self.as_node().children().find(LayoutNode::is_element) } pub fn drain_modified_elements(&self) -> Vec<(LayoutElement, ElementSnapshot)> { let elements = unsafe { self.document.drain_modified_elements() }; elements.into_iter().map(|(el, snapshot)| (LayoutElement::from_layout_js(el), snapshot)).collect() } } /// A wrapper around elements that ensures layout can only ever access safe properties. #[derive(Copy, Clone)] pub struct LayoutElement<'le> { element: LayoutJS, chain: PhantomData<&'le ()>, } impl<'le> LayoutElement<'le> { pub fn from_layout_js(el: LayoutJS) -> LayoutElement<'le> { LayoutElement { element: el, chain: PhantomData, } } pub fn style_attribute(&self) -> &'le Option { unsafe { &*self.element.style_attribute() } } pub fn as_node(&self) -> LayoutNode<'le> { LayoutNode::from_layout_js(self.element.upcast()) } pub fn get_state(&self) -> ElementState { self.element.get_state_for_layout() } /// Properly marks nodes as dirty in response to restyle hints. pub fn note_restyle_hint(&self, mut hint: RestyleHint) { // Bail early if there's no restyling to do. if hint.is_empty() { return; } // If the restyle hint is non-empty, we need to restyle either this element // or one of its siblings. Mark our ancestor chain as having dirty descendants. let node = self.as_node(); let mut curr = node; while let Some(parent) = curr.parent_node() { if parent.has_dirty_descendants() { break } unsafe { parent.set_dirty_descendants(true); } curr = parent; } // Set up our helpers. fn dirty_node(node: &LayoutNode) { unsafe { node.set_dirty(true); node.set_dirty_descendants(true); } } fn dirty_descendants(node: &LayoutNode) { for ref child in node.children() { dirty_node(child); dirty_descendants(child); } } // Process hints. if hint.contains(RESTYLE_SELF) { dirty_node(&node); // FIXME(bholley, #8438): We currently need to RESTYLE_DESCENDANTS in the // RESTYLE_SELF case in order to make sure "inherit" style structs propagate // properly. See the explanation in the github issue. hint.insert(RESTYLE_DESCENDANTS); } if hint.contains(RESTYLE_DESCENDANTS) { unsafe { node.set_dirty_descendants(true); } dirty_descendants(&node); } if hint.contains(RESTYLE_LATER_SIBLINGS) { let mut next = ::selectors::Element::next_sibling_element(self); while let Some(sib) = next { let sib_node = sib.as_node(); dirty_node(&sib_node); dirty_descendants(&sib_node); next = ::selectors::Element::next_sibling_element(&sib); } } } } fn as_element<'le>(node: LayoutJS) -> Option> { node.downcast().map(|element| LayoutElement::from_layout_js(element)) } macro_rules! state_getter { ($( $(#[$Flag_attr: meta])* state $css: expr => $variant: ident / $method: ident / $flag: ident = $value: expr, )+) => { $( fn $method(&self) -> bool { self.element.get_state_for_layout().contains($flag) } )+ } } impl<'le> ::selectors::Element for LayoutElement<'le> { fn parent_element(&self) -> Option> { unsafe { self.element.upcast().parent_node_ref().and_then(as_element) } } fn first_child_element(&self) -> Option> { self.as_node().children().filter_map(|n| n.as_element()).next() } fn last_child_element(&self) -> Option> { self.as_node().rev_children().filter_map(|n| n.as_element()).next() } fn prev_sibling_element(&self) -> Option> { let mut node = self.as_node(); while let Some(sibling) = node.prev_sibling() { if let Some(element) = sibling.as_element() { return Some(element) } node = sibling; } None } fn next_sibling_element(&self) -> Option> { let mut node = self.as_node(); while let Some(sibling) = node.next_sibling() { if let Some(element) = sibling.as_element() { return Some(element) } node = sibling; } None } fn is_root(&self) -> bool { match self.as_node().parent_node() { None => false, Some(node) => node.type_id() == NodeTypeId::Document, } } fn is_empty(&self) -> bool { self.as_node().children().all(|node| match node.type_id() { NodeTypeId::Element(..) => false, NodeTypeId::CharacterData(CharacterDataTypeId::Text) => unsafe { node.node.downcast().unwrap().data_for_layout().is_empty() }, _ => true }) } #[inline] fn get_local_name(&self) -> &Atom { self.element.local_name() } #[inline] fn get_namespace(&self) -> &Namespace { self.element.namespace() } fn is_link(&self) -> bool { // FIXME: This is HTML only. let node = self.as_node(); match node.type_id() { // https://html.spec.whatwg.org/multipage/#selector-link NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLAnchorElement)) | NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLAreaElement)) | NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLLinkElement)) => { unsafe { (*self.element.unsafe_get()).get_attr_val_for_layout(&ns!(""), &atom!("href")).is_some() } } _ => false, } } #[inline] fn is_unvisited_link(&self) -> bool { self.is_link() } #[inline] fn is_visited_link(&self) -> bool { false } state_pseudo_classes!(state_getter); #[inline] fn get_id(&self) -> Option { unsafe { (*self.element.id_attribute()).clone() } } #[inline] fn has_class(&self, name: &Atom) -> bool { unsafe { self.element.has_class_for_layout(name) } } #[inline(always)] fn each_class(&self, mut callback: F) where F: FnMut(&Atom) { unsafe { match self.element.get_classes_for_layout() { None => {} Some(ref classes) => { for class in *classes { callback(class) } } } } } #[inline] fn has_servo_nonzero_border(&self) -> bool { unsafe { match (*self.element.unsafe_get()).get_attr_for_layout(&ns!(""), &atom!("border")) { None | Some(&AttrValue::UInt(_, 0)) => false, _ => true, } } } fn match_attr(&self, attr: &AttrSelector, test: F) -> bool where F: Fn(&str) -> bool { let name = if self.is_html_element_in_html_document() { &attr.lower_name } else { &attr.name }; match attr.namespace { NamespaceConstraint::Specific(ref ns) => { self.get_attr(ns, name).map_or(false, |attr| test(attr)) }, NamespaceConstraint::Any => { self.get_attrs(name).iter().any(|attr| test(*attr)) } } } fn is_html_element_in_html_document(&self) -> bool { unsafe { self.element.html_element_in_html_document_for_layout() } } } impl<'le> TElementAttributes for LayoutElement<'le> { fn synthesize_presentational_hints_for_legacy_attributes(&self, hints: &mut V) where V: VecLike>> { unsafe { self.element.synthesize_presentational_hints_for_legacy_attributes(hints); } } #[inline] fn get_attr<'a>(&'a self, namespace: &Namespace, name: &Atom) -> Option<&'a str> { unsafe { (*self.element.unsafe_get()).get_attr_val_for_layout(namespace, name) } } #[inline] fn get_attrs<'a>(&'a self, name: &Atom) -> Vec<&'a str> { unsafe { (*self.element.unsafe_get()).get_attr_vals_for_layout(name) } } } #[derive(Copy, PartialEq, Clone)] pub enum PseudoElementType { Normal, Before(T), After(T), } impl PseudoElementType { pub fn is_before(&self) -> bool { match *self { PseudoElementType::Before(_) => true, _ => false, } } pub fn is_after(&self) -> bool { match *self { PseudoElementType::After(_) => true, _ => false, } } pub fn strip(&self) -> PseudoElementType<()> { match *self { PseudoElementType::Normal => PseudoElementType::Normal, PseudoElementType::Before(_) => PseudoElementType::Before(()), PseudoElementType::After(_) => PseudoElementType::After(()), } } } /// A thread-safe version of `LayoutNode`, used during flow construction. This type of layout /// node does not allow any parents or siblings of nodes to be accessed, to avoid races. #[derive(Copy, Clone)] pub struct ThreadSafeLayoutNode<'ln> { /// The wrapped node. node: LayoutNode<'ln>, pseudo: PseudoElementType, } impl<'ln> ThreadSafeLayoutNode<'ln> { /// Creates a new layout node with the same lifetime as this layout node. pub unsafe fn new_with_this_lifetime(&self, node: &LayoutJS) -> ThreadSafeLayoutNode<'ln> { ThreadSafeLayoutNode { node: self.node.new_with_this_lifetime(node), pseudo: PseudoElementType::Normal, } } /// Creates a new `ThreadSafeLayoutNode` from the given `LayoutNode`. pub fn new<'a>(node: &LayoutNode<'a>) -> ThreadSafeLayoutNode<'a> { ThreadSafeLayoutNode { node: node.clone(), pseudo: PseudoElementType::Normal, } } /// Creates a new `ThreadSafeLayoutNode` for the same `LayoutNode` /// with a different pseudo-element type. fn with_pseudo(&self, pseudo: PseudoElementType) -> ThreadSafeLayoutNode<'ln> { ThreadSafeLayoutNode { node: self.node.clone(), pseudo: pseudo, } } /// Returns the interior of this node as a `LayoutJS`. This is highly unsafe for layout to /// call and as such is marked `unsafe`. unsafe fn get_jsmanaged(&self) -> &LayoutJS { self.node.get_jsmanaged() } /// Converts self into an `OpaqueNode`. pub fn opaque(&self) -> OpaqueNode { OpaqueNodeMethods::from_jsmanaged(unsafe { self.get_jsmanaged() }) } /// Returns the type ID of this node. /// Returns `None` if this is a pseudo-element; otherwise, returns `Some`. pub fn type_id(&self) -> Option { if self.pseudo != PseudoElementType::Normal { return None } Some(self.node.type_id()) } pub fn debug_id(self) -> usize { self.node.debug_id() } pub fn flow_debug_id(self) -> usize { self.node.flow_debug_id() } /// Returns an iterator over this node's children. pub fn children(&self) -> ThreadSafeLayoutNodeChildrenIterator<'ln> { ThreadSafeLayoutNodeChildrenIterator::new(*self) } /// If this is an element, accesses the element data. Fails if this is not an element node. #[inline] pub fn as_element(&self) -> ThreadSafeLayoutElement<'ln> { unsafe { let element = match self.get_jsmanaged().downcast() { Some(e) => e.unsafe_get(), None => panic!("not an element") }; // FIXME(pcwalton): Workaround until Rust gets multiple lifetime parameters on // implementations. ThreadSafeLayoutElement { element: &*element, } } } #[inline] pub fn get_pseudo_element_type(&self) -> PseudoElementType { self.pseudo } #[inline] pub fn get_before_pseudo(&self) -> Option> { let layout_data_ref = self.borrow_layout_data(); let node_layout_data_wrapper = layout_data_ref.as_ref().unwrap(); node_layout_data_wrapper.data.before_style.as_ref().map(|style| { self.with_pseudo(PseudoElementType::Before(style.get_box().display)) }) } #[inline] pub fn get_after_pseudo(&self) -> Option> { let layout_data_ref = self.borrow_layout_data(); let node_layout_data_wrapper = layout_data_ref.as_ref().unwrap(); node_layout_data_wrapper.data.after_style.as_ref().map(|style| { self.with_pseudo(PseudoElementType::After(style.get_box().display)) }) } /// Borrows the layout data without checking. #[inline(always)] fn borrow_layout_data_unchecked(&self) -> *const Option { unsafe { self.node.borrow_layout_data_unchecked() } } /// Borrows the layout data immutably. Fails on a conflicting borrow. /// /// TODO(pcwalton): Make this private. It will let us avoid borrow flag checks in some cases. #[inline(always)] pub fn borrow_layout_data(&self) -> Ref> { self.node.borrow_layout_data() } /// Borrows the layout data mutably. Fails on a conflicting borrow. /// /// TODO(pcwalton): Make this private. It will let us avoid borrow flag checks in some cases. #[inline(always)] pub fn mutate_layout_data(&self) -> RefMut> { self.node.mutate_layout_data() } /// Returns the style results for the given node. If CSS selector matching /// has not yet been performed, fails. #[inline] pub fn style(&self) -> Ref> { Ref::map(self.borrow_layout_data(), |layout_data_ref| { let layout_data = layout_data_ref.as_ref().expect("no layout data"); let style = match self.get_pseudo_element_type() { PseudoElementType::Before(_) => &layout_data.data.before_style, PseudoElementType::After(_) => &layout_data.data.after_style, PseudoElementType::Normal => &layout_data.shared_data.style, }; style.as_ref().unwrap() }) } /// Removes the style from this node. pub fn unstyle(self) { let mut layout_data_ref = self.mutate_layout_data(); let layout_data = layout_data_ref.as_mut().expect("no layout data"); let style = match self.get_pseudo_element_type() { PseudoElementType::Before(_) => &mut layout_data.data.before_style, PseudoElementType::After (_) => &mut layout_data.data.after_style, PseudoElementType::Normal => &mut layout_data.shared_data.style, }; *style = None; } pub fn is_ignorable_whitespace(&self) -> bool { unsafe { let text: LayoutJS = match self.get_jsmanaged().downcast() { Some(text) => text, None => return false }; if !is_whitespace(text.upcast().data_for_layout()) { return false } // NB: See the rules for `white-space` here: // // http://www.w3.org/TR/CSS21/text.html#propdef-white-space // // If you implement other values for this property, you will almost certainly // want to update this check. match self.style().get_inheritedtext().white_space { white_space::T::normal | white_space::T::nowrap => true, white_space::T::pre | white_space::T::pre_wrap | white_space::T::pre_line => false, } } } /// Get the description of how to account for recent style changes. /// This is a simple bitfield and fine to copy by value. pub fn restyle_damage(self) -> RestyleDamage { let layout_data_ref = self.borrow_layout_data(); layout_data_ref.as_ref().unwrap().data.restyle_damage } /// Set the restyle damage field. pub fn set_restyle_damage(self, damage: RestyleDamage) { let mut layout_data_ref = self.mutate_layout_data(); match *layout_data_ref { Some(ref mut layout_data) => layout_data.data.restyle_damage = damage, _ => panic!("no layout data for this node"), } } /// Returns the layout data flags for this node. pub fn flags(self) -> LayoutDataFlags { unsafe { match *self.borrow_layout_data_unchecked() { None => panic!(), Some(ref layout_data) => layout_data.data.flags, } } } /// Adds the given flags to this node. pub fn insert_flags(self, new_flags: LayoutDataFlags) { let mut layout_data_ref = self.mutate_layout_data(); match *layout_data_ref { Some(ref mut layout_data) => layout_data.data.flags.insert(new_flags), _ => panic!("no layout data for this node"), } } /// Removes the given flags from this node. pub fn remove_flags(self, flags: LayoutDataFlags) { let mut layout_data_ref = self.mutate_layout_data(); match *layout_data_ref { Some(ref mut layout_data) => layout_data.data.flags.remove(flags), _ => panic!("no layout data for this node"), } } /// Returns true if this node contributes content. This is used in the implementation of /// `empty_cells` per CSS 2.1 ยง 17.6.1.1. pub fn is_content(&self) -> bool { match self.type_id() { Some(NodeTypeId::Element(..)) | Some(NodeTypeId::CharacterData(CharacterDataTypeId::Text(..))) => true, _ => false } } /// If this is a text node, generated content, or a form element, copies out /// its content. Otherwise, panics. /// /// FIXME(pcwalton): This might have too much copying and/or allocation. Profile this. pub fn text_content(&self) -> TextContent { if self.pseudo != PseudoElementType::Normal { let layout_data_ref = self.borrow_layout_data(); let data = &layout_data_ref.as_ref().unwrap().data; let style = if self.pseudo.is_before() { &data.before_style } else { &data.after_style }; return match style.as_ref().unwrap().get_box().content { content::T::Content(ref value) if !value.is_empty() => { TextContent::GeneratedContent((*value).clone()) } _ => TextContent::GeneratedContent(vec![]), }; } let this = unsafe { self.get_jsmanaged() }; if let Some(text) = this.downcast::() { let data = unsafe { text.upcast().data_for_layout().to_owned() }; return TextContent::Text(data); } if let Some(input) = this.downcast::() { let data = unsafe { input.get_value_for_layout() }; return TextContent::Text(data); } if let Some(area) = this.downcast::() { let data = unsafe { area.get_value_for_layout() }; return TextContent::Text(data); } panic!("not text!") } /// If the insertion point is within this node, returns it. Otherwise, returns `None`. pub fn insertion_point(&self) -> Option { let this = unsafe { self.get_jsmanaged() }; if let Some(area) = this.downcast::() { let insertion_point = unsafe { area.get_absolute_insertion_point_for_layout() }; let text = unsafe { area.get_value_for_layout() }; return Some(CharIndex(search_index(insertion_point, text.char_indices()))); } if let Some(input) = this.downcast::() { let insertion_point_index = unsafe { input.get_insertion_point_index_for_layout() }; if let Some(insertion_point_index) = insertion_point_index { return Some(CharIndex(insertion_point_index)); } } None } /// If this is an image element, returns its URL. If this is not an image element, fails. /// /// FIXME(pcwalton): Don't copy URLs. pub fn image_url(&self) -> Option { unsafe { self.get_jsmanaged().downcast() .expect("not an image!") .image_url() } } pub fn canvas_data(&self) -> Option { unsafe { let canvas_element = self.get_jsmanaged().downcast(); canvas_element.map(|canvas| canvas.data()) } } /// If this node is an iframe element, returns its pipeline ID. If this node is /// not an iframe element, fails. pub fn iframe_pipeline_id(&self) -> PipelineId { use script::dom::htmliframeelement::HTMLIFrameElementLayoutMethods; unsafe { let iframe_element = self.get_jsmanaged().downcast::() .expect("not an iframe element!"); iframe_element.pipeline_id().unwrap() } } pub fn get_colspan(&self) -> u32 { unsafe { self.get_jsmanaged().downcast::().unwrap().get_colspan() } } } pub struct ThreadSafeLayoutNodeChildrenIterator<'a> { current_node: Option>, parent_node: ThreadSafeLayoutNode<'a>, } impl<'a> ThreadSafeLayoutNodeChildrenIterator<'a> { fn new(parent: ThreadSafeLayoutNode<'a>) -> ThreadSafeLayoutNodeChildrenIterator<'a> { fn first_child(parent: ThreadSafeLayoutNode) -> Option { if parent.pseudo != PseudoElementType::Normal { return None } parent.get_before_pseudo().or_else(|| { unsafe { parent.get_jsmanaged().first_child_ref() .map(|node| parent.new_with_this_lifetime(&node)) } }) } ThreadSafeLayoutNodeChildrenIterator { current_node: first_child(parent), parent_node: parent, } } } impl<'a> Iterator for ThreadSafeLayoutNodeChildrenIterator<'a> { type Item = ThreadSafeLayoutNode<'a>; fn next(&mut self) -> Option> { let node = self.current_node.clone(); if let Some(ref node) = node { self.current_node = match node.pseudo { PseudoElementType::Before(_) => { match unsafe { self.parent_node.get_jsmanaged().first_child_ref() } { Some(first) => { Some(unsafe { self.parent_node.new_with_this_lifetime(&first) }) }, None => self.parent_node.get_after_pseudo(), } }, PseudoElementType::Normal => { match unsafe { node.get_jsmanaged().next_sibling_ref() } { Some(next) => { Some(unsafe { self.parent_node.new_with_this_lifetime(&next) }) }, None => self.parent_node.get_after_pseudo(), } }, PseudoElementType::After(_) => { None }, }; } node } } /// A wrapper around elements that ensures layout can only ever access safe properties and cannot /// race on elements. pub struct ThreadSafeLayoutElement<'le> { element: &'le Element, } impl<'le> ThreadSafeLayoutElement<'le> { #[inline] pub fn get_attr(&self, namespace: &Namespace, name: &Atom) -> Option<&'le str> { unsafe { self.element.get_attr_val_for_layout(namespace, name) } } } /// Opaque type stored in type-unsafe work queues for parallel layout. /// Must be transmutable to and from LayoutNode. pub type UnsafeLayoutNode = (usize, usize); pub fn layout_node_to_unsafe_layout_node(node: &LayoutNode) -> UnsafeLayoutNode { unsafe { let ptr: usize = mem::transmute_copy(node); (ptr, 0) } } pub unsafe fn layout_node_from_unsafe_layout_node(node: &UnsafeLayoutNode) -> LayoutNode { let (node, _) = *node; mem::transmute(node) } pub enum TextContent { Text(String), GeneratedContent(Vec), } impl TextContent { pub fn is_empty(&self) -> bool { match *self { TextContent::Text(_) => false, TextContent::GeneratedContent(ref content) => content.is_empty(), } } }