diff options
author | Sho Miyamoto <me@shqld.dev> | 2021-12-17 19:16:38 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-12-18 16:10:10 +0900 |
commit | bb0906025485dfb19b80ba043c75574a17748c0e (patch) | |
tree | 54fa2e50bdd266b6ec27e44e5c7adf3652c14704 /files/ja | |
parent | 1063f7fe003a72c5c1508e1eaa3a80e86c38a269 (diff) | |
download | translated-content-bb0906025485dfb19b80ba043c75574a17748c0e.tar.gz translated-content-bb0906025485dfb19b80ba043c75574a17748c0e.tar.bz2 translated-content-bb0906025485dfb19b80ba043c75574a17748c0e.zip |
Remove `shortcut` from the example for favicon
As described in MDN itself, web authors must no longer use `shortcut` as the link type.
> Warning: The shortcut link type is often seen before icon, but this link type is non-conforming, ignored and web authors must not use it anymore.
https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types
Diffstat (limited to 'files/ja')
-rw-r--r-- | files/ja/web/html/element/link/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/html/element/link/index.html b/files/ja/web/html/element/link/index.html index 3b64f38381..d6341006f7 100644 --- a/files/ja/web/html/element/link/index.html +++ b/files/ja/web/html/element/link/index.html @@ -259,7 +259,7 @@ translation_of: Web/HTML/Element/link <!-- 高解像度でない iPhone, iPod Touch, Android 2.1 以降の端末 --> <link rel="apple-touch-icon-precomposed" href="favicon57.png"> <!-- 基本的なファビコン --> -<link rel="shortcut icon" href="favicon32.png"></pre> +<link rel="icon" href="favicon32.png"></pre> <h3 id="メディアクエリのついた条件付きのリソース読み込み">メディアクエリのついた条件付きのリソース読み込み</h3> |