Browse Source

Added new html5 boolean attributes

ADmad 13 years ago
parent
commit
ea3fa67c79
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Cake/View/Helper.php

+ 1 - 1
lib/Cake/View/Helper.php

@@ -145,7 +145,7 @@ class Helper extends Object {
 	protected $_minimizedAttributes = array(
 		'compact', 'checked', 'declare', 'readonly', 'disabled', 'selected',
 		'defer', 'ismap', 'nohref', 'noshade', 'nowrap', 'multiple', 'noresize',
-		'autoplay', 'controls', 'loop', 'muted', 'required'
+		'autoplay', 'controls', 'loop', 'muted', 'required', 'novalidate', 'formnovalidate'
 	);
 
 /**