diff options
author | corvid <corvid@dillo.org> | 2013-09-05 20:46:02 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2013-09-05 20:46:02 +0000 |
commit | 228834973c0e17f6dcfd23e4e2115074eeb00cb2 (patch) | |
tree | 623e0b5400a69fdfba446932d88f52562ba412a2 /src | |
parent | f70391b49020d1f2d7a057a3e04a80570729ea25 (diff) |
INS element
Diffstat (limited to 'src')
-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}" |