]> git.openstreetmap.org Git - rails.git/commitdiff
Remove border=0 from feed icons
authorAnton Khorev <tony29@yandex.ru>
Sat, 27 Apr 2024 23:02:15 +0000 (02:02 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 27 Apr 2024 23:02:15 +0000 (02:02 +0300)
app/helpers/application_helper.rb
test/helpers/application_helper_test.rb

index 368668a9bbf4fbb5c82637595ab0a09560032d56..e81a9d4019897f54c9bd4fcbebc9f45b4051a3e0 100644 (file)
@@ -10,11 +10,11 @@ module ApplicationHelper
   end
 
   def rss_link_to(args = {})
-    link_to(image_tag("RSS.png", :size => "16x16", :border => 0), args, :class => "rsssmall")
+    link_to(image_tag("RSS.png", :size => "16x16"), args, :class => "rsssmall")
   end
 
   def atom_link_to(args = {})
-    link_to(image_tag("RSS.png", :size => "16x16", :border => 0), args, :class => "rsssmall")
+    link_to(image_tag("RSS.png", :size => "16x16"), args, :class => "rsssmall")
   end
 
   def dir
index a905090dba6133a8c20908f8ee308a6fbb817015..f6b335a5cd19af6255728dc9b99cb39d0723f54d 100644 (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