- Timestamp:
- 02/01/2024 01:00:56 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/html-api/wpHtmlSupportRequiredOpenElements.php
r57264 r57508 45 45 */ 46 46 private function ensure_support_is_added_everywhere( $tag_name ) { 47 $p = WP_HTML_Processor::create_fragment( "<$tag_name>" );48 49 $this->assertFalse( $p ->step(), "Must support terminating elements in specific scope check before adding support for the {$tag_name} element." );47 $processor = WP_HTML_Processor::create_fragment( "<$tag_name>" ); 48 49 $this->assertFalse( $processor->step(), "Must support terminating elements in specific scope check before adding support for the {$tag_name} element." ); 50 50 } 51 51
Note: See TracChangeset
for help on using the changeset viewer.