Nobuyoshi Nakada 2022-04-13 16:14:07 +09:00 коммит произвёл git
Родитель deaa656608
Коммит 9e3ab9da7f
2 изменённых файлов: 30 добавлений и 7 удалений

Просмотреть файл

@ -84,7 +84,7 @@ class RDoc::Markup::ToHtml < RDoc::Markup::Formatter
def handle_RDOCLINK url # :nodoc:
case url
when /^rdoc-ref:/
$'
CGI.escapeHTML($')
when /^rdoc-label:/
text = $'
@ -95,13 +95,11 @@ class RDoc::Markup::ToHtml < RDoc::Markup::Formatter
else text
end
gen_url url, text
gen_url CGI.escapeHTML(url), CGI.escapeHTML(text)
when /^rdoc-image:/
"<img src=\"#{$'}\">"
else
url =~ /\Ardoc-[a-z]+:/
$'
%[<img src=\"#{CGI.escapeHTML($')}\">]
when /\Ardoc-[a-z]+:/
CGI.escapeHTML($')
end
end

Просмотреть файл

@ -665,6 +665,26 @@ EXPECTED
assert_equal "\n<p>C</p>\n", result
end
def test_convert_RDOCLINK_escape_image
assert_escaped '<script>', 'rdoc-image:"><script>alert(`rdoc-image`)</script>"'
end
def test_convert_RDOCLINK_escape_label_id
assert_escaped '<script>', 'rdoc-label::path::"><script>alert(`rdoc-label_id`)</script>"'
end
def test_convert_RDOCLINK_escape_label_path
assert_escaped '<script>', 'rdoc-label::"><script>alert(`rdoc-label_path`)</script>"'
end
def test_convert_RDOCLINK_escape_ref
assert_escaped '<script>', 'rdoc-ref:"><script>alert(`rdoc-ref`)</script>"'
end
def test_convert_RDOCLINK_escape_xxx
assert_escaped '<script>', 'rdoc-xxx:"><script>alert(`rdoc-xxx`)</script>"'
end
def test_convert_TIDYLINK_footnote
result = @to.convert 'text{*1}[rdoc-label:foottext-1:footmark-1]'
@ -690,6 +710,11 @@ EXPECTED
"\n<p><a href=\"http://example.com\"><img src=\"path/to/image.jpg\"></a></p>\n"
assert_equal expected, result
result =
@to.convert '{rdoc-image:<script>alert`link text`</script>}[http://example.com]'
assert_not_include result, "<script>"
end
def test_convert_TIDYLINK_rdoc_label