Skip to content

Commit aeb64e4

Browse files
author
bors-servo
committed
Auto merge of #117 - frewsxcv:htmlinputelement-static-strings, r=Manishearth
Add static strings from <input> 'type' values https://html.spec.whatwg.org/multipage/#attr-input-type <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/string-cache/117) <!-- Reviewable:end -->
2 parents e9f4c63 + d3b7e41 commit aeb64e4

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
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.1.15"
4+
version = "0.1.16"
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"

shared/static_atom_list.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,9 @@ pub static ATOMS: &'static [&'static str] = &[
330330
"datalist",
331331
"datasrc",
332332
"datatemplate",
333+
"date",
333334
"datetime",
335+
"datetime-local",
334336
"declare",
335337
"default",
336338
"defer",
@@ -374,6 +376,7 @@ pub static ATOMS: &'static [&'static str] = &[
374376
"elevation",
375377
"ellipse",
376378
"em",
379+
"email",
377380
"emptyset",
378381
"enable-background",
379382
"encoding",
@@ -686,6 +689,7 @@ pub static ATOMS: &'static [&'static str] = &[
686689
"mn",
687690
"mo",
688691
"mode",
692+
"month",
689693
"moment",
690694
"momentabout",
691695
"movablelimits",
@@ -732,6 +736,7 @@ pub static ATOMS: &'static [&'static str] = &[
732736
"notprsubset",
733737
"notsubset",
734738
"nowrap",
739+
"number",
735740
"numoctaves",
736741
"numOctaves",
737742
"occurrence",
@@ -860,6 +865,7 @@ pub static ATOMS: &'static [&'static str] = &[
860865
"padding-top",
861866
"panose-1",
862867
"partialdiff",
868+
"password",
863869
"path",
864870
"pathlength",
865871
"pathLength",
@@ -973,6 +979,7 @@ pub static ATOMS: &'static [&'static str] = &[
973979
"scrolling",
974980
"sdev",
975981
"seamless",
982+
"search",
976983
"sec",
977984
"sech",
978985
"section",
@@ -1064,6 +1071,7 @@ pub static ATOMS: &'static [&'static str] = &[
10641071
"targety",
10651072
"targetY",
10661073
"tbreak",
1074+
"tel",
10671075
"tendsto",
10681076
"text",
10691077
"text-align",
@@ -1106,6 +1114,7 @@ pub static ATOMS: &'static [&'static str] = &[
11061114
"units-per-em",
11071115
"unselectable",
11081116
"uplimit",
1117+
"url",
11091118
"use",
11101119
"usemap",
11111120
"valign",
@@ -1140,6 +1149,7 @@ pub static ATOMS: &'static [&'static str] = &[
11401149
"v-mathematical",
11411150
"vspace",
11421151
"wbr",
1152+
"week",
11431153
"when",
11441154
"white-space",
11451155
"width",

0 commit comments

Comments
 (0)