diff options
-rw-r--r-- | src/html.cc | 2 | ||||
-rw-r--r-- | src/styleengine.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc index 99c14dbf..ad3208b8 100644 --- a/src/html.cc +++ b/src/html.cc @@ -3274,7 +3274,7 @@ const TagInfo Tags[] = { {"img", B8(010001),'F',0, Html_tag_open_img, Html_tag_content_img, NULL}, {"input", B8(010001),'F',0, Html_tag_open_input, NULL, NULL}, - /* ins */ + {"ins", B8(011101),'R',2, Html_tag_open_default, NULL, NULL}, {"isindex", B8(110001),'F',0, Html_tag_open_isindex, NULL, NULL}, {"kbd", B8(010101),'R',2, Html_tag_open_default, NULL, NULL}, /* label 010101 */ diff --git a/src/styleengine.cc b/src/styleengine.cc index 50bd4cb7..1889bf3a 100644 --- a/src/styleengine.cc +++ b/src/styleengine.cc @@ -856,7 +856,7 @@ void StyleEngine::buildUserAgentStyle () { "ul ul {list-style-type: circle}" "ul ul ul {list-style-type: square}" "ul ul ul ul {list-style-type: disc}" - "u {text-decoration: underline}" + "ins, u {text-decoration: underline}" "small, sub, sup {font-size: 0.83em}" "sub {vertical-align: sub}" "sup {vertical-align: super}" |