From d2ce0388948c7e79efffd903cb0fb69f3a6f9551 Mon Sep 17 00:00:00 2001 From: dmsnell Date: Tue, 16 Apr 2024 12:08:17 +0000 Subject: [PATCH] HTML API: Validate HTML Processor against external test suite from html5lib. In this patch, the test suite from html5lib validates the tree-construction steps in the HTML Processor to ensure that they are behaving according to the HTML specification. This suite of tests is also used by the servo project to test its html5ever package. A new test module in the HTML API transforms HTML Processor output to match the expected tree shape from the external tests. For cases where there are tests validating behaviors of unsupported HTML tags and constructs, the tests are marked as skipped. As the HTML API continues to expand its own support, the number of skipped tests will automatically shrink down towards zero. Additional tests are skipped through the `SKIP_TEST` array in the test runner. Fixes #60227. See #58517. Props azaozz, costdev, dmsnell, hellofromtonya, jonsurrell, jorbin, swisspidy. Built from https://develop.svn.wordpress.org/trunk@58010 git-svn-id: http://core.svn.wordpress.org/trunk@57481 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index c8f69929a1..ea63857307 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58009'; +$wp_version = '6.6-alpha-58010'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.