diff options
author | corvid <corvid@dillo.org> | 2013-09-05 21:04:20 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2013-09-05 21:04:20 +0000 |
commit | 8c1f63b7c4f53e4f4e00600120f1125564c83eeb (patch) | |
tree | b7437c333aed102f58c120dbf3fa19bc55841321 /src/css.hh | |
parent | 228834973c0e17f6dcfd23e4e2115074eeb00cb2 (diff) |
html5 MARK element
Diffstat (limited to 'src/css.hh')
-rw-r--r-- | src/css.hh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -451,10 +451,10 @@ class CssStyleSheet { <lout::object::ConstString, RuleList > (true, true, 256) {}; }; - static const int ntags = 90 + 8; // \todo don't hardcode + static const int ntags = 90 + 9; // \todo don't hardcode /* 90 is the full number of html4 elements, including those which we have - * implemented. From html 5, let's add: article, header, footer, nav, - * section, aside, figure, figcaption. + * implemented. From html 5, let's add: article, header, footer, mark, + * nav, section, aside, figure, figcaption. */ RuleList elementTable[ntags], anyTable; |