Commit ec23b1b4 by Qiang Xue

Added new boolean attributes.

parent 42397df0
...@@ -51,6 +51,7 @@ class HtmlBase ...@@ -51,6 +51,7 @@ class HtmlBase
*/ */
public static $booleanAttributes = array( public static $booleanAttributes = array(
'async' => 1, 'async' => 1,
'autobuffer' => 1,
'autofocus' => 1, 'autofocus' => 1,
'autoplay' => 1, 'autoplay' => 1,
'checked' => 1, 'checked' => 1,
...@@ -62,6 +63,7 @@ class HtmlBase ...@@ -62,6 +63,7 @@ class HtmlBase
'formnovalidate' => 1, 'formnovalidate' => 1,
'hidden' => 1, 'hidden' => 1,
'ismap' => 1, 'ismap' => 1,
'itemscope' => 1,
'loop' => 1, 'loop' => 1,
'multiple' => 1, 'multiple' => 1,
'muted' => 1, 'muted' => 1,
...@@ -69,6 +71,7 @@ class HtmlBase ...@@ -69,6 +71,7 @@ class HtmlBase
'noresize' => 1, 'noresize' => 1,
'novalidate' => 1, 'novalidate' => 1,
'open' => 1, 'open' => 1,
'pubdate' => 1,
'readonly' => 1, 'readonly' => 1,
'required' => 1, 'required' => 1,
'reversed' => 1, 'reversed' => 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment