diff --git a/plugin/Cargo.toml b/plugin/Cargo.toml index 90c396f..4db662e 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "string_cache_plugin" -version = "0.1.3" +version = "0.1.4" authors = [ "The Servo Project Developers" ] description = "A string interning library for Rust, developed as part of the Servo project − compiler plugin." license = "MIT / Apache-2.0" diff --git a/plugin/src/atom/data.rs b/plugin/src/atom/data.rs index 50c35a3..18c14a5 100644 --- a/plugin/src/atom/data.rs +++ b/plugin/src/atom/data.rs @@ -1131,4 +1131,34 @@ pub static ATOMS: &'static [&'static str] = &[ "z", "zoomAndPan", "zoomandpan", + + "background-size", + "background-origin", + "background-clip", + "border-top-left-radius", + "border-top-right-radius", + "border-bottom-right-radius", + "border-bottom-left-radius", + "outline-color", + "outline-style", + "outline-width", + "overflow-wrap", + "list-style-image", + "list-style-position", + "list-style-type", + "column-count", + "column-width", + "overflow-x", + "overflow-y", + "transition-property", + "transition-duration", + "transition-timing-function", + "transition-delay", + "border-radius", + "outline", + "word-wrap", + "list-style", + "columns", + "transitions", + ];