Skip to content

Commit 199adc9

Browse files
author
bors-servo
authored
Auto merge of #168 - KiChjang:transitionend, r=jdm
Add transitionend atoms to the static list <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/string-cache/168) <!-- Reviewable:end -->
2 parents 7031f90 + 38eb8f3 commit 199adc9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "string_cache"
4-
version = "0.2.25"
4+
version = "0.2.26"
55
authors = [ "The Servo Project Developers" ]
66
description = "A string interning library for Rust, developed as part of the Servo project."
77
license = "MIT / Apache-2.0"

src/static_atom_list.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,6 +902,7 @@ pub static ATOMS: &'static [&'static str] = &[
902902
"onstop",
903903
"onstorage",
904904
"onsubmit",
905+
"ontransitionend",
905906
"onunload",
906907
"onzoom",
907908
"opacity",
@@ -1177,8 +1178,9 @@ pub static ATOMS: &'static [&'static str] = &[
11771178
"transition-delay",
11781179
"transition-duration",
11791180
"transition-property",
1180-
"transitions",
11811181
"transition-timing-function",
1182+
"transitionend",
1183+
"transitions",
11821184
"transpose",
11831185
"tref",
11841186
"true",

0 commit comments

Comments
 (0)