Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion includes/sanitizers/class-amp-allowed-tags-generated.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
class AMP_Allowed_Tags_Generated {

private static $spec_file_revision = 1043;
private static $spec_file_revision = 1045;
private static $minimum_validator_revision_required = 455;

private static $descendant_tag_lists = array(
Expand Down Expand Up @@ -3884,6 +3884,11 @@ class AMP_Allowed_Tags_Generated {
'amp-jwplayer' => array(
array(
'attr_spec_list' => array(
'autoplay' => array(
'value' => array(
'',
),
),
'data-media-id' => array(
'value_regex_casei' => '[0-9a-z]{8}',
),
Expand All @@ -3894,6 +3899,11 @@ class AMP_Allowed_Tags_Generated {
'data-playlist-id' => array(
'value_regex_casei' => '[0-9a-z]{8}',
),
'dock' => array(
'requires_extension' => array(
'amp-video-docking',
),
),
),
'tag_spec' => array(
'amp_layout' => array(
Expand All @@ -3913,6 +3923,7 @@ class AMP_Allowed_Tags_Generated {
'requires_extension' => array(
'amp-jwplayer',
),
'spec_url' => 'https://amp.dev/documentation/components/amp-jwplayer',
),
),
),
Expand Down