We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2641ff3 + dfd74c4 commit 6d9e98dCopy full SHA for 6d9e98d
include/tidyenum.h
@@ -1211,6 +1211,7 @@ typedef enum
1211
TidyAttr_MAX, /**< MAX= */
1212
TidyAttr_MEDIAGROUP, /**< MEDIAGROUP= */
1213
TidyAttr_MIN, /**< MIN= */
1214
+ TidyAttr_MUTED, /**< MUTED= */
1215
TidyAttr_NOVALIDATE, /**< NOVALIDATE= */
1216
TidyAttr_OPEN, /**< OPEN= */
1217
TidyAttr_OPTIMUM, /**< OPTIMUM= */
@@ -1266,6 +1267,7 @@ typedef enum
1266
1267
TidyAttr_OnWAITING, /**< OnWAITING= */
1268
TidyAttr_PATTERN, /**< PATTERN= */
1269
TidyAttr_PLACEHOLDER, /**< PLACEHOLDER= */
1270
+ TidyAttr_PLAYSINLINE, /**< PLAYSINLINE= */
1271
TidyAttr_POSTER, /**< POSTER= */
1272
TidyAttr_PRELOAD, /**< PRELOAD= */
1273
TidyAttr_PUBDATE, /**< PUBDATE= */
src/attrdict.c
@@ -3625,6 +3625,8 @@ const AttrVersion TY_(W3CAttrsFor_VIDEO)[] =
3625
{ TidyAttr_HEIGHT, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3626
{ TidyAttr_LOOP, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3627
{ TidyAttr_MEDIAGROUP, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3628
+ { TidyAttr_MUTED, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3629
+ { TidyAttr_PLAYSINLINE, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3630
{ TidyAttr_POSTER, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3631
{ TidyAttr_PRELOAD, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
3632
{ TidyAttr_SRC, xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|xxxx|HT50|XH50 },
src/attrs.c
@@ -317,6 +317,7 @@ static const Attribute attribute_defs [] =
317
{ TidyAttr_MAX, "max", CH_PCDATA },
318
{ TidyAttr_MEDIAGROUP, "mediagroup", CH_PCDATA },
319
{ TidyAttr_MIN, "min", CH_PCDATA },
320
+ { TidyAttr_MUTED, "muted", CH_BOOL },
321
{ TidyAttr_NOVALIDATE, "novalidate", CH_PCDATA },
322
{ TidyAttr_OPEN, "open", CH_BOOL }, /* Is. #925 PR #932 */
323
{ TidyAttr_OPTIMUM, "optimum", CH_PCDATA },
@@ -372,6 +373,7 @@ static const Attribute attribute_defs [] =
372
373
{ TidyAttr_OnWAITING, "onwaiting", CH_PCDATA },
374
{ TidyAttr_PATTERN, "pattern", CH_PCDATA },
375
{ TidyAttr_PLACEHOLDER, "placeholder", CH_PCDATA },
376
+ { TidyAttr_PLAYSINLINE, "playsinline", CH_BOOL },
377
{ TidyAttr_POSTER, "poster", CH_PCDATA },
378
{ TidyAttr_PRELOAD, "preload", CH_PCDATA },
379
{ TidyAttr_PUBDATE, "pubdate", CH_PCDATA },
0 commit comments