diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-02 17:29:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-02 17:39:09 +0200 |
commit | 049d57e59279cc84d0dd23c8c8ff919edde8f14b (patch) | |
tree | 0f47bf3b7cf5862abac1cfe540234ec86321bb83 /web/xhtml | |
parent | 0222b0696f4b160105d0d5bc953e640cdcd54219 (diff) |
Fix FOUC effect in Firefox caused by autofocus
Diffstat (limited to 'web/xhtml')
-rw-r--r-- | web/xhtml | 43 |
1 files changed, 22 insertions, 21 deletions
@@ -299,27 +299,28 @@ namespace web }; static const css_style_element CSS_STYLE; - static const element BODY ("body"); - static const element DIV ("div"); - static const element FORM ("form"); - static const element H1 ("h1"); - static const element H2 ("h2"); - static const element H3 ("h3"); - static const element H4 ("h4"); - static const element H5 ("h5"); - static const element H6 ("h6"); - static const element LI ("li"); - static const element LINK ("link"); - static const element META ("meta"); - static const element P ("p"); - static const element PRE ("pre"); - static const element TABLE ("table"); - static const element TBODY ("tbody"); - static const element TD ("td"); - static const element TH ("th"); - static const element TITLE ("title"); - static const element TR ("tr"); - static const element UL ("ul"); + static const element BODY ("body"); + static const element DIV ("div"); + static const element FORM ("form"); + static const element H1 ("h1"); + static const element H2 ("h2"); + static const element H3 ("h3"); + static const element H4 ("h4"); + static const element H5 ("h5"); + static const element H6 ("h6"); + static const element LI ("li"); + static const element LINK ("link"); + static const element META ("meta"); + static const element P ("p"); + static const element PRE ("pre"); + static const element SCRIPT ("script"); + static const element TABLE ("table"); + static const element TBODY ("tbody"); + static const element TD ("td"); + static const element TH ("th"); + static const element TITLE ("title"); + static const element TR ("tr"); + static const element UL ("ul"); static const inline_element A ("a"); static const inline_element B ("b"); |