diff options
author | Frankie Roberto <frankie@frankieroberto.com> | 2012-04-09 12:23:46 +0100 |
---|---|---|
committer | Frankie Roberto <frankie@frankieroberto.com> | 2012-04-09 12:23:46 +0100 |
commit | 283133a59cfdb56c24582389eebc80a202f7f52b (patch) | |
tree | 5a602d7b379a9c3c931df72f3ed20678c2fc086d /actionpack/lib | |
parent | 4c1dcb05373f667be90a69bfb2b642efe75e9d18 (diff) | |
download | rails-283133a59cfdb56c24582389eebc80a202f7f52b.tar.gz rails-283133a59cfdb56c24582389eebc80a202f7f52b.tar.bz2 rails-283133a59cfdb56c24582389eebc80a202f7f52b.zip |
Adding itemscope to list of boolean attributes.
'itemscope' is defined within HTML5 for use in microdata markup. See
http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.ht
ml#attr-itemscope
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/tag_helper.rb b/actionpack/lib/action_view/helpers/tag_helper.rb index 71be2955a8..23777721f6 100644 --- a/actionpack/lib/action_view/helpers/tag_helper.rb +++ b/actionpack/lib/action_view/helpers/tag_helper.rb @@ -14,7 +14,7 @@ module ActionView BOOLEAN_ATTRIBUTES = %w(disabled readonly multiple checked autobuffer autoplay controls loop selected hidden scoped async defer reversed ismap seemless muted required - autofocus novalidate formnovalidate open pubdate).to_set + autofocus novalidate formnovalidate open pubdate itemscope).to_set BOOLEAN_ATTRIBUTES.merge(BOOLEAN_ATTRIBUTES.map {|attribute| attribute.to_sym }) PRE_CONTENT_STRINGS = { |