Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
30 changes: 30 additions & 0 deletions plugin/src/atom/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",

];