Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add <meta name="application-title"> feature #2592

Merged
merged 9 commits into from
Feb 27, 2025
9 changes: 9 additions & 0 deletions features/meta-application-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: '<meta name="application-title">'
description: The `name="application-title"` attribute for the `<meta>` HTML element sets an installed web application's title bar text.
# No spec yet. Inclusion in the HTML spec depends on multi-vendor implementation.
# See https://github.com/whatwg/html/issues/8909
# So, for now, the Edge explainer is the closest thing to a spec.
spec: https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/DocumentSubtitle/explainer.md
group: progressive-web-app
compat_features:
- html.elements.meta.name.application-title
8 changes: 8 additions & 0 deletions features/meta-application-title.yml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Generated from: meta-application-title.yml
# Do not edit this file by hand. Edit the source file instead!

status:
baseline: false
support: {}
compat_features:
- html.elements.meta.name.application-title
4 changes: 4 additions & 0 deletions scripts/specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ const defaultAllowlist: allowlistItem[] = [
[
"https://github.com/tc39/proposal-regexp-legacy-features",
"Allowed because it's the most spec-like thing that exists for discouraged RegExp static properties. Remove when https://github.com/tc39/ecma262/issues/137 is resolved."
],
[
"https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/DocumentSubtitle/explainer.md",
"Allowed because this is where the application-title meta tag is spec'd at the moment. Remove when https://github.com/whatwg/html/issues/8909 is fixed."
]
];

Expand Down