- Timestamp:
- 01/23/2025 06:35:15 PM (5 months ago)
- Location:
- branches/6.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.7
-
branches/6.7/src/wp-includes/html-api/class-wp-html-processor.php
r59535 r59694 805 805 'html' === $token_name || 806 806 // Void elements. 807 self::is_void( $token_name) ||807 ( 'html' === $token_namespace && self::is_void( $token_name ) ) || 808 808 // Special atomic elements. 809 809 ( 'html' === $token_namespace && in_array( $token_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), true ) ) ||
Note: See TracChangeset
for help on using the changeset viewer.