0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Microsoft Edgeにおいてパスワードの自動入力がされない

Posted at

概要

9月5日よりEdgeにおいてログイン画面のパスワードの自動入力されない事案が起きた。
調査の結果恐らく原因は9月5日のバージョンアップではないかと思われるが、公式に詳細は出ておらず。
対象の項目においてはID/パスワードにautocomplete、name属性を付けていなかったので、それが原因ではないかと試したところ自動入力がされるようになった。
これまでメジャーなブラウザにおいては明示的に記載がない場合IDから推測されていたので、厳密性が求められるのようになったのではないかと予想する。

対応

autocompleteに設定を追加する

autocomplete="username"
autocomplete="current-password"

name属性を設定

name="username"
name="password"

参考

Microsoft Edgeのリリース情報(バージョン 140.0.3485.54リリースノート)
https://learn.microsoft.com/ja-jp/deployedge/microsoft-edge-relnote-stable-channel#version-1400348554-september-5-2025
autocompleteについて
https://developer.mozilla.org/ja/docs/Web/HTML/Reference/Attributes/autocomplete

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?