Skip to content
23 changes: 17 additions & 6 deletions src/wp-includes/kses.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,13 @@
),
'br' => array(),
'button' => array(
'disabled' => true,
'name' => true,
'type' => true,
'value' => true,
'disabled' => true,
'name' => true,
'type' => true,
'value' => true,
'popovertarget' => true,
'popovertargetaction' => true,
'aria-haspopup' => true,
),
'caption' => array(
'align' => true,
Expand Down Expand Up @@ -145,7 +148,13 @@
'open' => true,
),
'div' => array(
'align' => true,
'align' => true,
'popover' => true,
),
'dialog' => array(
'closedby' => true,
'open' => true,
'popover' => true,
),
'dl' => array(),
'dt' => array(),
Expand Down Expand Up @@ -362,7 +371,9 @@
'tt' => array(),
'u' => array(),
'ul' => array(
'type' => true,
'type' => true,
'popover' => true,
'role' => true,
),
'ol' => array(
'start' => true,
Expand Down
Loading