diff options
author | Ennui Langeweile <85590273+EnnuiL@users.noreply.github.com> | 2023-09-26 18:37:46 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 21:37:46 +0000 |
commit | 80d9a2bb4f53090f07b1fd4900ddcf7d49f6fdac (patch) | |
tree | d934700c20588df83c867aded3bc801a060521a3 /resources | |
parent | f330cf534d69d609c036e4240e8320c9ccf80bc1 (diff) | |
download | servo-80d9a2bb4f53090f07b1fd4900ddcf7d49f6fdac.tar.gz servo-80d9a2bb4f53090f07b1fd4900ddcf7d49f6fdac.zip |
Treat the `keygen` element as obsolete (#30429)
* Eradicate the `keygen` element
* Run `./mach fmt`
* Fix relevant Servo test
* Fix outdated manifest
Diffstat (limited to 'resources')
-rw-r--r-- | resources/iso-8859-8.css | 2 | ||||
-rw-r--r-- | resources/user-agent.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/iso-8859-8.css b/resources/iso-8859-8.css index 3651061c391..9a34476860e 100644 --- a/resources/iso-8859-8.css +++ b/resources/iso-8859-8.css @@ -18,6 +18,6 @@ tbody, tfoot, tr, td, th, dir, dd, dl, dt, menu, ol, ul, li, [dir=ltr i], unicode-bidi: bidi-override; } input:not([type=submit i]):not([type=reset i]):not([type=button i]), -textarea, keygen { +textarea { unicode-bidi: normal; } diff --git a/resources/user-agent.css b/resources/user-agent.css index 06410f74b81..bc1a14c7815 100644 --- a/resources/user-agent.css +++ b/resources/user-agent.css @@ -250,7 +250,7 @@ table:matches( } -input, select, option, optgroup, button, textarea, keygen { +input, select, option, optgroup, button, textarea { text-indent: initial; text-transform: none; } |