mirror of
git://develop.git.wordpress.org/
synced 2025-04-06 05:04:18 +02:00
HTML API: Expect closer on foreign content void lookalike elements.
Some checks failed
Coding Standards / PHP coding standards (push) Has been cancelled
Coding Standards / JavaScript coding standards (push) Has been cancelled
End-to-end Tests / Test with SCRIPT_DEBUG disabled (push) Has been cancelled
End-to-end Tests / Test with SCRIPT_DEBUG enabled (push) Has been cancelled
JavaScript Tests / QUnit Tests (push) Has been cancelled
Performance Tests / Performance tests (push) Has been cancelled
Performance Tests / Performance tests (with memcached) (push) Has been cancelled
PHP Compatibility / Check PHP compatibility (push) Has been cancelled
PHPUnit Tests / PHP 7.2 (push) Has been cancelled
PHPUnit Tests / PHP 7.3 (push) Has been cancelled
PHPUnit Tests / PHP 7.4 (push) Has been cancelled
PHPUnit Tests / PHP 8.0 (push) Has been cancelled
PHPUnit Tests / PHP 8.1 (push) Has been cancelled
PHPUnit Tests / PHP 8.2 (push) Has been cancelled
PHPUnit Tests / PHP 8.3 (push) Has been cancelled
PHPUnit Tests / PHP 8.4 (push) Has been cancelled
Test Build Processes / Core running from build (push) Has been cancelled
Test Build Processes / Core running from src (push) Has been cancelled
Test Build Processes / Gutenberg running from build (push) Has been cancelled
Test Build Processes / Gutenberg running from src (push) Has been cancelled
Coding Standards / Slack Notifications (push) Has been cancelled
Coding Standards / Failed workflow tasks (push) Has been cancelled
End-to-end Tests / Slack Notifications (push) Has been cancelled
End-to-end Tests / Failed workflow tasks (push) Has been cancelled
JavaScript Tests / Slack Notifications (push) Has been cancelled
JavaScript Tests / Failed workflow tasks (push) Has been cancelled
Performance Tests / Slack Notifications (push) Has been cancelled
Performance Tests / Failed workflow tasks (push) Has been cancelled
PHP Compatibility / Slack Notifications (push) Has been cancelled
PHP Compatibility / Failed workflow tasks (push) Has been cancelled
PHPUnit Tests / Slack Notifications (push) Has been cancelled
PHPUnit Tests / Failed workflow tasks (push) Has been cancelled
Test Build Processes / Slack Notifications (push) Has been cancelled
Test Build Processes / Failed workflow tasks (push) Has been cancelled
Some checks failed
Coding Standards / PHP coding standards (push) Has been cancelled
Coding Standards / JavaScript coding standards (push) Has been cancelled
End-to-end Tests / Test with SCRIPT_DEBUG disabled (push) Has been cancelled
End-to-end Tests / Test with SCRIPT_DEBUG enabled (push) Has been cancelled
JavaScript Tests / QUnit Tests (push) Has been cancelled
Performance Tests / Performance tests (push) Has been cancelled
Performance Tests / Performance tests (with memcached) (push) Has been cancelled
PHP Compatibility / Check PHP compatibility (push) Has been cancelled
PHPUnit Tests / PHP 7.2 (push) Has been cancelled
PHPUnit Tests / PHP 7.3 (push) Has been cancelled
PHPUnit Tests / PHP 7.4 (push) Has been cancelled
PHPUnit Tests / PHP 8.0 (push) Has been cancelled
PHPUnit Tests / PHP 8.1 (push) Has been cancelled
PHPUnit Tests / PHP 8.2 (push) Has been cancelled
PHPUnit Tests / PHP 8.3 (push) Has been cancelled
PHPUnit Tests / PHP 8.4 (push) Has been cancelled
Test Build Processes / Core running from build (push) Has been cancelled
Test Build Processes / Core running from src (push) Has been cancelled
Test Build Processes / Gutenberg running from build (push) Has been cancelled
Test Build Processes / Gutenberg running from src (push) Has been cancelled
Coding Standards / Slack Notifications (push) Has been cancelled
Coding Standards / Failed workflow tasks (push) Has been cancelled
End-to-end Tests / Slack Notifications (push) Has been cancelled
End-to-end Tests / Failed workflow tasks (push) Has been cancelled
JavaScript Tests / Slack Notifications (push) Has been cancelled
JavaScript Tests / Failed workflow tasks (push) Has been cancelled
Performance Tests / Slack Notifications (push) Has been cancelled
Performance Tests / Failed workflow tasks (push) Has been cancelled
PHP Compatibility / Slack Notifications (push) Has been cancelled
PHP Compatibility / Failed workflow tasks (push) Has been cancelled
PHPUnit Tests / Slack Notifications (push) Has been cancelled
PHPUnit Tests / Failed workflow tasks (push) Has been cancelled
Test Build Processes / Slack Notifications (push) Has been cancelled
Test Build Processes / Failed workflow tasks (push) Has been cancelled
Ensure that expects_closer returns false on tags that look like void HTML tags, but are actually not void tags in foreign content. Reviewed by westonruter, jorbin. Merges [59392] to the 6.7 branch. Props jonsurrell, bernhard-reiter. Fixes #62363. git-svn-id: https://develop.svn.wordpress.org/branches/6.7@59694 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ea3a3e5ceb
commit
fa911aa4a4
@ -804,7 +804,7 @@ class WP_HTML_Processor extends WP_HTML_Tag_Processor {
|
||||
// Doctype declarations.
|
||||
'html' === $token_name ||
|
||||
// Void elements.
|
||||
self::is_void( $token_name ) ||
|
||||
( 'html' === $token_namespace && self::is_void( $token_name ) ) ||
|
||||
// Special atomic elements.
|
||||
( 'html' === $token_namespace && in_array( $token_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), true ) ) ||
|
||||
// Self-closing elements in foreign content.
|
||||
|
@ -561,6 +561,31 @@ class Tests_HtmlApi_WpHtmlProcessor extends WP_UnitTestCase {
|
||||
$this->assertTrue( $processor->expects_closer() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensures that expects_closer works for void-like elements in foreign content.
|
||||
*
|
||||
* For example, `<svg><input>text` creates an `svg:input` that contains a text node.
|
||||
* This input should not be treated as a void tag and _should_ expect a close tag.
|
||||
*
|
||||
* @dataProvider data_void_tags
|
||||
*
|
||||
* @ticket 62363
|
||||
*/
|
||||
public function test_expects_closer_foreign_content_not_void( string $void_tag ) {
|
||||
$processor = WP_HTML_Processor::create_fragment( "<svg><{$void_tag}>" );
|
||||
|
||||
$this->assertTrue( $processor->next_tag( $void_tag ) );
|
||||
|
||||
// Some void-like tags will close the SVG element and be HTML tags.
|
||||
if ( $processor->get_namespace() === 'svg' ) {
|
||||
$this->assertSame( array( 'HTML', 'BODY', 'SVG', $void_tag ), $processor->get_breadcrumbs() );
|
||||
$this->assertTrue( $processor->expects_closer() );
|
||||
} else {
|
||||
$this->assertSame( array( 'HTML', 'BODY', $void_tag ), $processor->get_breadcrumbs() );
|
||||
$this->assertFalse( $processor->expects_closer() );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensures that self-closing foreign SCRIPT elements are properly found.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user