Opened 11 months ago
Last modified 6 weeks ago
#60178 accepted defect (bug)
wp_video_shortcode() outputs invalid HTML
Reported by: | jongycastillo | Owned by: | sabernhardt |
---|---|---|---|
Milestone: | 6.8 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Media | Keywords: | has-patch has-unit-tests |
Focuses: | Cc: |
Description
Did an audit of a website and found several invalid HTML for video tags that were output with wp_video_shortcode()
. The errors:
- Bad value
1
for attributeloop
on elementvideo
- Bad value
1
for attributeautoplay
on elementvideo
- Bad value
1
for attributemuted
on elementvideo
Based on documentation from Mozilla, all 3 are boolean attributes. Here is an example of function usage that produced the HTML validation errors:
<?php echo wp_video_shortcode( [ 'src' => wp_get_attachment_url(9999), 'class' => 'my-custom-video', 'poster' => '', 'loop' => 'true', 'autoplay' => 'true', 'muted' => 'true', 'height' => 1080, 'width' => 1920 ] );
This part in wp_video_shortcode()
is the culprit:
<?php $attr_strings = array(); foreach ( $html_atts as $k => $v ) { $attr_strings[] = $k . '="' . esc_attr( $v ) . '"'; }
Currently, we are using the filter to clean up these attributes like this:
<?php add_filter( 'wp_video_shortcode', function ( $output ) { // Clean up attributes for HTML validation $output = str_replace( [ 'autoplay="1"', 'loop="1"', 'muted="1"', ], [ 'autoplay', 'loop', 'muted', ], $output ); return $output; } );
Change History (14)
#1
@
11 months ago
- Component changed from Shortcodes to Media
- Keywords needs-patch added
- Version 6.4.2 deleted
#2
@
8 months ago
- Milestone changed from Awaiting Review to 6.6
The coding standards for HTML are still referencing XHTML standards, which tells me it may be time to do an update on those coding standards.
I think we should ignore the coding standards if they conflict with HTML standards, and as @sabernhardt observes, there is a precedent.
#3
@
8 months ago
HTML Coding standards update PR: https://github.com/WordPress/wpcs-docs/pull/136
#5
@
8 months ago
HTML standards updated: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/html/
This ticket was mentioned in Slack in #core-media by antpb. View the logs.
6 months ago
This ticket was mentioned in PR #6772 on WordPress/wordpress-develop by @shub07.
6 months ago
#7
- Keywords has-patch added; needs-patch removed
wp_video_shortcode() was chaging boolean attributes to 1, as of true === 1, in debug i notice it was directly happening after foreach, not by eascaping, so I have add a if statement to handle boolean attributes and make ternary opretion for them, so we can still escape value as WP standards and our problem solves too.
#8
@
6 months ago
- Milestone changed from 6.6 to 6.7
I'll take a closer look at this for the next cycle.
This ticket was mentioned in Slack in #core by stoyangeorgiev. View the logs.
2 months ago
#11
@
2 months ago
- Keywords needs-patch added; has-patch removed
- Milestone changed from 6.7 to 6.8
Moving the milestone of this one and changing it to needs-patch, since there seems to be an issue with the current one. At the time checking it in the bug-scrub it is giving 404's
This ticket was mentioned in PR #7606 on WordPress/wordpress-develop by @debarghyabanerjee.
6 weeks ago
#13
- Keywords has-patch has-unit-tests added; needs-patch removed
Trac Ticket : Core-60178
## Overview
- This pull request introduces updates to the wp_video_shortcode function to enhance the handling of boolean attributes and the preload attribute in accordance with HTML5 standards. These changes aim to ensure that the generated video elements are more compliant with modern web practices.
## Changes Made
- Boolean Attributes Handling:
- The loop, autoplay, and muted attributes are now output without values when their respective conditions are met. This aligns with HTML5 standards where these attributes can be treated as boolean.
- Preload Attribute
- The preload attribute has been updated to accept only specific allowed values: none, metadata, and auto. If a value outside of this list is provided, it will be ignored, preventing invalid attribute outputs.
- Code Improvements
- Enhanced readability and maintainability of the code, including better organization of attribute handling and validation.
## Benefits
- Improves compliance with HTML5 standards for video elements.
- Ensures cleaner and more efficient HTML output.
- Enhances user experience by properly managing video attributes based on their intended use.
## Testing:
- All existing tests related to video shortcode rendering have been updated to validate the new behavior of boolean attributes and the preload attribute.
- This pull request aims to improve the functionality and reliability of video embeds in WordPress while adhering to current web standards.
@debarghyabanerjee commented on PR #7606:
6 weeks ago
#14
Hi @joedolson , can you please take a look into this PR. Thanks.
The attribute values were "1" with WordPress 5.0 and possibly since 4.0 (r30185). Also, the unit tests have expected that since r36240.
The handbook still says to use quotes for attribute values, though the comment form can print its attributes without values when the theme declares support.
To pass validation, the shortcode's attributes simply could have values that match the attribute:
Or instead of editing the
foreach
loop, the$html_atts
array could set the string values (similar to code proposed for thecontrols
attribute on #40590):Similar edits should be made for the audio shortcode too.