forked from mirrors/gecko-dev
Previously, `string-cache` defined:
* An string-like `Atom` type,
* An `atom!("foo")` macro that expands to a value of that type, for a set of strings known at compile-time,
* A `struct Namespace(Atom);` type
* A `ns!(html)` macro that maps known prefixed to `Namespace` values with the corresponding namespace URL.
Adding a string to the static set required making a change to the `string-cache` crate.
With 0.3, the `Atom` type is now generic, with a type parameter that provides a set of static strings. We can have multiple such sets, defined in different crates. The `string_cache_codegen` crate, to be used in build scripts, generates code that defines such a set, a new atom type (a type alias for `Atom<_>` with the type parameter set), and an `atom!`-like macro.
The html5ever repository has a new `html5ever_atoms` crate that defines three such types: `Prefix`, `Namespace`, and `LocalName` (with respective `namespace_prefix!`, `namespace_url!`, and `local_name!` macros). It also defines the `ns!` macro like before.
This repository has a new `servo_atoms` crate in `components/atoms` that, for now, defines a single `Atom` type (and `atom!`) macro. (`servo_atoms::Atom` is defined as something like `type Atom = string_cache::Atom<ServoStaticStringSet>;`, so overall there’s now two types named `Atom`.)
In this PR, `servo_atoms::Atom` is used for everything else that was `string_cache::Atom` before. But more atom types can be defined as needed. Two reasons to do this are to auto-generate the set of static strings (I’m planning to do this for CSS property names, which is the motivation for this change), or to have the type system help us avoid mix up unrelated things (this is why we had a `Namespace` type ever before this change).
Introducing new types helped me find a bug: when creating a new attribute `dom::Element::set_style_attr`, would pass `Some(atom!("style"))` instead of `None` (now `Option<html5ever_atoms::Prefix>` instead of `Option<string_cache::Atom>`) to the `prefix` argument of `Attr::new`. I suppose the author of that code confused it with the `local_name` argument.
---
Note that Stylo is not affected by any of this. The `gecko_string_cache` module is unchanged, with a single `Atom` type. The `style` crate conditionally compiles `Prefix` and `LocalName` re-exports for that are both `gecko_string_cache::Atom` on stylo.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because _____
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Source-Repo: https://github.com/servo/servo
Source-Revision: 5b4cc9568dbd5c15e5d2fbc62719172f11566ffa
375 lines
14 KiB
Rust
375 lines
14 KiB
Rust
/* 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/. */
|
|
|
|
use cssparser::ToCss;
|
|
use dom::bindings::codegen::Bindings::CSSStyleDeclarationBinding::{self, CSSStyleDeclarationMethods};
|
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
|
use dom::bindings::inheritance::Castable;
|
|
use dom::bindings::js::{JS, Root};
|
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
|
use dom::bindings::str::DOMString;
|
|
use dom::element::Element;
|
|
use dom::node::{Node, NodeDamage, window_from_node};
|
|
use dom::window::Window;
|
|
use parking_lot::RwLock;
|
|
use servo_atoms::Atom;
|
|
use std::ascii::AsciiExt;
|
|
use std::sync::Arc;
|
|
use style::parser::ParserContextExtraData;
|
|
use style::properties::{Shorthand, Importance, PropertyDeclarationBlock};
|
|
use style::properties::{is_supported_property, parse_one_declaration, parse_style_attribute};
|
|
use style::selector_impl::PseudoElement;
|
|
|
|
// http://dev.w3.org/csswg/cssom/#the-cssstyledeclaration-interface
|
|
#[dom_struct]
|
|
pub struct CSSStyleDeclaration {
|
|
reflector_: Reflector,
|
|
owner: JS<Element>,
|
|
readonly: bool,
|
|
pseudo: Option<PseudoElement>,
|
|
}
|
|
|
|
#[derive(PartialEq, HeapSizeOf)]
|
|
pub enum CSSModificationAccess {
|
|
ReadWrite,
|
|
Readonly,
|
|
}
|
|
|
|
macro_rules! css_properties(
|
|
( $([$getter:ident, $setter:ident, $cssprop:expr]),* ) => (
|
|
$(
|
|
fn $getter(&self) -> DOMString {
|
|
self.GetPropertyValue(DOMString::from($cssprop))
|
|
}
|
|
fn $setter(&self, value: DOMString) -> ErrorResult {
|
|
self.SetPropertyValue(DOMString::from($cssprop), value)
|
|
}
|
|
)*
|
|
);
|
|
);
|
|
|
|
impl CSSStyleDeclaration {
|
|
pub fn new_inherited(owner: &Element,
|
|
pseudo: Option<PseudoElement>,
|
|
modification_access: CSSModificationAccess)
|
|
-> CSSStyleDeclaration {
|
|
CSSStyleDeclaration {
|
|
reflector_: Reflector::new(),
|
|
owner: JS::from_ref(owner),
|
|
readonly: modification_access == CSSModificationAccess::Readonly,
|
|
pseudo: pseudo,
|
|
}
|
|
}
|
|
|
|
pub fn new(global: &Window,
|
|
owner: &Element,
|
|
pseudo: Option<PseudoElement>,
|
|
modification_access: CSSModificationAccess)
|
|
-> Root<CSSStyleDeclaration> {
|
|
reflect_dom_object(box CSSStyleDeclaration::new_inherited(owner,
|
|
pseudo,
|
|
modification_access),
|
|
global,
|
|
CSSStyleDeclarationBinding::Wrap)
|
|
}
|
|
|
|
fn get_computed_style(&self, property: &Atom) -> Option<DOMString> {
|
|
let node = self.owner.upcast::<Node>();
|
|
if !node.is_in_doc() {
|
|
// TODO: Node should be matched against the style rules of this window.
|
|
// Firefox is currently the only browser to implement this.
|
|
return None;
|
|
}
|
|
let addr = node.to_trusted_node_address();
|
|
window_from_node(&*self.owner).resolved_style_query(addr, self.pseudo.clone(), property)
|
|
}
|
|
}
|
|
|
|
impl CSSStyleDeclarationMethods for CSSStyleDeclaration {
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-length
|
|
fn Length(&self) -> u32 {
|
|
let elem = self.owner.upcast::<Element>();
|
|
let len = match *elem.style_attribute().borrow() {
|
|
Some(ref lock) => lock.read().declarations.len(),
|
|
None => 0,
|
|
};
|
|
len as u32
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-item
|
|
fn Item(&self, index: u32) -> DOMString {
|
|
self.IndexedGetter(index).unwrap_or_default()
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-getpropertyvalue
|
|
fn GetPropertyValue(&self, mut property: DOMString) -> DOMString {
|
|
if self.readonly {
|
|
// Readonly style declarations are used for getComputedStyle.
|
|
property.make_ascii_lowercase();
|
|
let property = Atom::from(property);
|
|
return self.get_computed_style(&property).unwrap_or(DOMString::new());
|
|
}
|
|
|
|
let style_attribute = self.owner.style_attribute().borrow();
|
|
let style_attribute = if let Some(ref lock) = *style_attribute {
|
|
lock.read()
|
|
} else {
|
|
// No style attribute is like an empty style attribute: no matching declaration.
|
|
return DOMString::new()
|
|
};
|
|
|
|
let mut string = String::new();
|
|
style_attribute.property_value_to_css(&property, &mut string).unwrap();
|
|
DOMString::from(string)
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-getpropertypriority
|
|
fn GetPropertyPriority(&self, property: DOMString) -> DOMString {
|
|
let style_attribute = self.owner.style_attribute().borrow();
|
|
let style_attribute = if let Some(ref lock) = *style_attribute {
|
|
lock.read()
|
|
} else {
|
|
// No style attribute is like an empty style attribute: no matching declaration.
|
|
return DOMString::new()
|
|
};
|
|
|
|
if style_attribute.property_priority(&property).important() {
|
|
DOMString::from("important")
|
|
} else {
|
|
// Step 4
|
|
DOMString::new()
|
|
}
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-setproperty
|
|
fn SetProperty(&self,
|
|
property: DOMString,
|
|
value: DOMString,
|
|
priority: DOMString)
|
|
-> ErrorResult {
|
|
// Step 1
|
|
if self.readonly {
|
|
return Err(Error::NoModificationAllowed);
|
|
}
|
|
|
|
// Step 3
|
|
if !is_supported_property(&property) {
|
|
return Ok(());
|
|
}
|
|
|
|
let mut style_attribute = self.owner.style_attribute().borrow_mut();
|
|
|
|
if value.is_empty() {
|
|
// Step 4
|
|
let empty;
|
|
{
|
|
let mut style_attribute = if let Some(ref lock) = *style_attribute {
|
|
lock.write()
|
|
} else {
|
|
// No style attribute is like an empty style attribute: nothing to remove.
|
|
return Ok(())
|
|
};
|
|
|
|
style_attribute.remove_property(&property);
|
|
empty = style_attribute.declarations.is_empty()
|
|
}
|
|
if empty {
|
|
*style_attribute = None;
|
|
}
|
|
} else {
|
|
// Step 5
|
|
let importance = match &*priority {
|
|
"" => Importance::Normal,
|
|
p if p.eq_ignore_ascii_case("important") => Importance::Important,
|
|
_ => return Ok(()),
|
|
};
|
|
|
|
// Step 6
|
|
let window = window_from_node(&*self.owner);
|
|
let declarations =
|
|
parse_one_declaration(&property, &value, &window.get_url(), window.css_error_reporter(),
|
|
ParserContextExtraData::default());
|
|
|
|
// Step 7
|
|
let declarations = if let Ok(declarations) = declarations {
|
|
declarations
|
|
} else {
|
|
return Ok(());
|
|
};
|
|
|
|
// Step 8
|
|
// Step 9
|
|
match *style_attribute {
|
|
Some(ref lock) => {
|
|
let mut style_attribute = lock.write();
|
|
for declaration in declarations {
|
|
style_attribute.set_parsed_declaration(declaration, importance);
|
|
}
|
|
self.owner.set_style_attr(style_attribute.to_css_string());
|
|
}
|
|
ref mut option @ None => {
|
|
let important_count = if importance.important() {
|
|
declarations.len() as u32
|
|
} else {
|
|
0
|
|
};
|
|
let block = PropertyDeclarationBlock {
|
|
declarations: declarations.into_iter().map(|d| (d, importance)).collect(),
|
|
important_count: important_count,
|
|
};
|
|
self.owner.set_style_attr(block.to_css_string());
|
|
*option = Some(Arc::new(RwLock::new(block)));
|
|
}
|
|
}
|
|
}
|
|
|
|
let node = self.owner.upcast::<Node>();
|
|
node.dirty(NodeDamage::NodeStyleDamaged);
|
|
Ok(())
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-setpropertypriority
|
|
fn SetPropertyPriority(&self, property: DOMString, priority: DOMString) -> ErrorResult {
|
|
// Step 1
|
|
if self.readonly {
|
|
return Err(Error::NoModificationAllowed);
|
|
}
|
|
|
|
// Step 2 & 3
|
|
if !is_supported_property(&property) {
|
|
return Ok(());
|
|
}
|
|
|
|
// Step 4
|
|
let importance = match &*priority {
|
|
"" => Importance::Normal,
|
|
p if p.eq_ignore_ascii_case("important") => Importance::Important,
|
|
_ => return Ok(()),
|
|
};
|
|
|
|
let style_attribute = self.owner.style_attribute().borrow();
|
|
if let Some(ref lock) = *style_attribute {
|
|
let mut style_attribute = lock.write();
|
|
|
|
// Step 5 & 6
|
|
match Shorthand::from_name(&property) {
|
|
Some(shorthand) => style_attribute.set_importance(shorthand.longhands(), importance),
|
|
None => style_attribute.set_importance(&[&*property], importance),
|
|
}
|
|
|
|
self.owner.set_style_attr(style_attribute.to_css_string());
|
|
let node = self.owner.upcast::<Node>();
|
|
node.dirty(NodeDamage::NodeStyleDamaged);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-setpropertyvalue
|
|
fn SetPropertyValue(&self, property: DOMString, value: DOMString) -> ErrorResult {
|
|
self.SetProperty(property, value, DOMString::new())
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-removeproperty
|
|
fn RemoveProperty(&self, property: DOMString) -> Fallible<DOMString> {
|
|
// Step 1
|
|
if self.readonly {
|
|
return Err(Error::NoModificationAllowed);
|
|
}
|
|
|
|
let mut style_attribute = self.owner.style_attribute().borrow_mut();
|
|
let mut string = String::new();
|
|
let empty;
|
|
{
|
|
let mut style_attribute = if let Some(ref lock) = *style_attribute {
|
|
lock.write()
|
|
} else {
|
|
// No style attribute is like an empty style attribute: nothing to remove.
|
|
return Ok(DOMString::new())
|
|
};
|
|
|
|
// Step 3
|
|
style_attribute.property_value_to_css(&property, &mut string).unwrap();
|
|
|
|
// Step 4 & 5
|
|
style_attribute.remove_property(&property);
|
|
self.owner.set_style_attr(style_attribute.to_css_string());
|
|
empty = style_attribute.declarations.is_empty()
|
|
}
|
|
if empty {
|
|
*style_attribute = None;
|
|
}
|
|
|
|
let node = self.owner.upcast::<Node>();
|
|
node.dirty(NodeDamage::NodeStyleDamaged);
|
|
|
|
// Step 6
|
|
Ok(DOMString::from(string))
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-cssfloat
|
|
fn CssFloat(&self) -> DOMString {
|
|
self.GetPropertyValue(DOMString::from("float"))
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#dom-cssstyledeclaration-cssfloat
|
|
fn SetCssFloat(&self, value: DOMString) -> ErrorResult {
|
|
self.SetPropertyValue(DOMString::from("float"), value)
|
|
}
|
|
|
|
// https://dev.w3.org/csswg/cssom/#the-cssstyledeclaration-interface
|
|
fn IndexedGetter(&self, index: u32) -> Option<DOMString> {
|
|
let index = index as usize;
|
|
let elem = self.owner.upcast::<Element>();
|
|
let style_attribute = elem.style_attribute().borrow();
|
|
style_attribute.as_ref().and_then(|lock| {
|
|
lock.read().declarations.get(index).map(|entry| {
|
|
let (ref declaration, importance) = *entry;
|
|
let mut css = declaration.to_css_string();
|
|
if importance.important() {
|
|
css += " !important";
|
|
}
|
|
DOMString::from(css)
|
|
})
|
|
})
|
|
}
|
|
|
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-csstext
|
|
fn CssText(&self) -> DOMString {
|
|
let elem = self.owner.upcast::<Element>();
|
|
let style_attribute = elem.style_attribute().borrow();
|
|
|
|
if let Some(lock) = style_attribute.as_ref() {
|
|
DOMString::from(lock.read().to_css_string())
|
|
} else {
|
|
DOMString::new()
|
|
}
|
|
}
|
|
|
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-csstext
|
|
fn SetCssText(&self, value: DOMString) -> ErrorResult {
|
|
let window = window_from_node(self.owner.upcast::<Node>());
|
|
|
|
// Step 1
|
|
if self.readonly {
|
|
return Err(Error::NoModificationAllowed);
|
|
}
|
|
|
|
// Step 3
|
|
let decl_block = parse_style_attribute(&value, &window.get_url(), window.css_error_reporter(),
|
|
ParserContextExtraData::default());
|
|
*self.owner.style_attribute().borrow_mut() = if decl_block.declarations.is_empty() {
|
|
self.owner.set_style_attr(String::new());
|
|
None // Step 2
|
|
} else {
|
|
self.owner.set_style_attr(decl_block.to_css_string());
|
|
Some(Arc::new(RwLock::new(decl_block)))
|
|
};
|
|
let node = self.owner.upcast::<Node>();
|
|
node.dirty(NodeDamage::NodeStyleDamaged);
|
|
Ok(())
|
|
}
|
|
|
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-_camel_cased_attribute
|
|
css_properties_accessors!(css_properties);
|
|
}
|