aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-06-28 16:02:30 +0200
committerGitHub <noreply@github.com>2016-06-28 16:02:30 +0200
commita3d47122e52e0b5bef25268b0b4168cf7803d9b8 (patch)
tree7a6219dfc2567330198f2b4c139a02e8db6042eb /actionview/lib/action_view/helpers
parent88cb4eedfd0297cfb2e1d0706ac7f59aa0247874 (diff)
parent4e5264c9ca15bacefee0584493898dda79834232 (diff)
downloadrails-a3d47122e52e0b5bef25268b0b4168cf7803d9b8.tar.gz
rails-a3d47122e52e0b5bef25268b0b4168cf7803d9b8.tar.bz2
rails-a3d47122e52e0b5bef25268b0b4168cf7803d9b8.zip
Merge pull request #25551 from vipulnsward/25543-follow-up
Expand list of void elements to match spec
Diffstat (limited to 'actionview/lib/action_view/helpers')
-rw-r--r--actionview/lib/action_view/helpers/tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/tag_helper.rb b/actionview/lib/action_view/helpers/tag_helper.rb
index 57bfa01568..655e777d1d 100644
--- a/actionview/lib/action_view/helpers/tag_helper.rb
+++ b/actionview/lib/action_view/helpers/tag_helper.rb
@@ -30,7 +30,7 @@ module ActionView
include CaptureHelper
include OutputSafetyHelper
- VOID_ELEMENTS = %i(base br col embed hr img input keygen link meta param source track wbr).to_set
+ VOID_ELEMENTS = %i(area base br col embed hr img input keygen link meta param source track wbr).to_set
def initialize(view_context)
@view_context = view_context