aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorJoost Baaij <joost@spacebabies.nl>2014-04-14 00:38:46 +0200
committerJoost Baaij <joost@spacebabies.nl>2014-04-14 19:45:12 +0200
commit89ff1f82f01bd70e12ec1b45049be30ac262df30 (patch)
tree3008e03d3170c996e0524cc72188141aafd92d79 /actionview/CHANGELOG.md
parent4baa866e35a2c08aa236ac83c061e3343e951a49 (diff)
downloadrails-89ff1f82f01bd70e12ec1b45049be30ac262df30.tar.gz
rails-89ff1f82f01bd70e12ec1b45049be30ac262df30.tar.bz2
rails-89ff1f82f01bd70e12ec1b45049be30ac262df30.zip
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.
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 8c6db33be7..389cd131a3 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*
+
* `date_select` helper with option `with_css_classes: true` does not overwrite other classes.
*Izumi Wong-Horiuchi*