aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-04-17 15:29:37 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-04-17 15:29:37 -0300
commitcbb917455f306cf5818644b162f22be09f77d4b2 (patch)
tree60500a2db1f865523b5824d54decce811dfc17ae /actionview/CHANGELOG.md
parentc91a531ff384f70f72e7e0e213424d3e42a48c27 (diff)
parent89ff1f82f01bd70e12ec1b45049be30ac262df30 (diff)
downloadrails-cbb917455f306cf5818644b162f22be09f77d4b2.tar.gz
rails-cbb917455f306cf5818644b162f22be09f77d4b2.tar.bz2
rails-cbb917455f306cf5818644b162f22be09f77d4b2.zip
Merge pull request #14738 from tilsammans/pull/11407
Remove wrapping div with inline styles for hidden form fields. Conflicts: actionview/CHANGELOG.md
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 0302077e1c..8578b43d78 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,3 +1,11 @@
+* Remove wrapping div with inline styles for hidden form fields.
+
+ We are dropping HTML 4.01 and XHTML strict compliance since input tags directly
+ inside a form are valid HTML5, and the absense of inline styles help in validating
+ for Content Security Policy.
+
+ *Joost Baaij*
+
* `collection_check_boxes` respects `:index` option for the hidden filed name.
Fixes #14147.