Merge pull request #7726 from dhensby/pulls/3.5/functionaltest-html5-forms

FIX Allow HTML 5 input tags in FunctionalTest form submissions
This commit is contained in:
Damian Mooyman 2018-01-08 13:32:44 +13:00 committed by GitHub
commit 677336fbef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ class SimpleTagBuilder {
$tag_class = $map[$type];
return new $tag_class($attributes);
}
return false;
return new SimpleTextTag($attributes);
}
/**