Fix first_child_tag_name_oneof constraint to only apply if first child exists#2152
Merged
westonruter merged 1 commit intodevelopfrom Apr 20, 2019
Merged
Conversation
Member
Author
felixarntz
approved these changes
Apr 20, 2019
Member
Author
|
Cherry-picked onto 1.1 branch: 956a391 |
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As reported in a support forum topic, the following markup is now erroneously marked as a validation error:
It worked in 1.0 but it regressed in 1.1. The regression is due to #1860. Namely, the
first_child_tag_name_oneofvalidator constraint is incorrectly being implemented by also implying that there has to be a child to begin with. However, this was an incorrect interpretation it appears.In any case, the constraints to ensure there is a minimum number of tags is implemented later in the method:
amp-wp/includes/sanitizers/class-amp-tag-and-attribute-sanitizer.php
Lines 1859 to 1867 in 621a050
Fixing this doesn't cause any tests to fail, and it also causes the
amp-state[src]markup to not fail.Build for testing: amp.zip (1.1.1-alpha-20190420T060818Z-871da341)