Chrome/Edge 134 support experimental <meta name="application-title">
#25792
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.
Summary
Edge just shipped, in Chromium, a new name that can be used with
<meta>
tags. This name isapplication-title
and is used to provide text content (via thecontent
attribute) that should be displayed in an installed application's title bar.Installed application: a web app that's been installed as a standalone app on desktop operating systems that support it. For example, when installing a PWA from Microsoft Edge, on Windows.
This new meta tag makes it easy for developers to control the content that appears in the standalone app window's title bar. Developers can still use the
<title>
element (still works), but using<meta name="application-title" content="...">
provides an additional mechanism just for when the app is installed, which can help avoid UX issues (learn more from the explainer linked below).This BCD PR adds the compat data for the new meta name.
There's no spec yet as this is gated behind having more implementer interest. But the feature has shipped in Chrome and Edge, and other Chromium-based browsers, starting with 134.
Test results and supporting details
Explainer: https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/DocumentSubtitle/explainer.md
HTML spec discussion: whatwg/html#8909