asvanberg opened a new pull request, #1458: URL: https://github.com/apache/wicket/pull/1458
According to the [HTML specification for `<meta>` element](https://html.spec.whatwg.org/multipage/semantics.html#the-meta-element), a `<meta>` tag with the `name` attribute specified must also specify `content`. > If either name, http-equiv, or itemprop is specified, then the content attribute must also be specified. Otherwise, it must be omitted. Since `<wicket:header-items/>` is often placed in a base class for pages it means that no pages in the application will pass HTML validation. Check the following HTML against https://validator.w3.org/#validate_by_input ```html <!DOCTYPE html> <html lang="en"> <head> <title>wicket-header-items</title> <meta name="wicket.header.items"> </head> </html> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
