Remove border=0 from feed icons

This commit is contained in:
Anton Khorev 2024-04-28 02:02:15 +03:00
parent 528c2fb4da
commit a2e7b5db56
2 changed files with 4 additions and 4 deletions

View file

@ -31,12 +31,12 @@ class ApplicationHelperTest < ActionView::TestCase
def test_rss_link_to
link = rss_link_to(:controller => :diary_entries, :action => :rss)
assert_dom_equal "<a class=\"rsssmall\" href=\"/diary/rss\"><img border=\"0\" height=\"16\" src=\"/images/RSS.png\" width=\"16\" /></a>", link
assert_dom_equal "<a class=\"rsssmall\" href=\"/diary/rss\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" /></a>", link
end
def test_atom_link_to
link = atom_link_to(:controller => :changesets, :action => :feed)
assert_dom_equal "<a class=\"rsssmall\" href=\"/history/feed\"><img border=\"0\" height=\"16\" src=\"/images/RSS.png\" width=\"16\" /></a>", link
assert_dom_equal "<a class=\"rsssmall\" href=\"/history/feed\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" /></a>", link
end
def test_dir