1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

EdgeのIEモードの設定

Posted at

はじめに

Chromium版のEdgeにはIEモードというものがあります。これはEdgeでリクエストしているけど、サイトによってはIEで開くよ、というものらしいです。互換モード(IEっぽく動作している)というより、実際にIEで開くよう自動切り分けしてくれるらしいです。(タスクマネージャーで見てもIEのプロセスが起動している)
(設定方法はこちら
で、設定はXMLで書く(GUIから設定値が保管される)のですが、<compat-mode>意味が分からなかったので、試した結果を書き留めておきます。

まとめ

  • <compat-mode>IE11を指定するとIE11で表示
  • <compat-mode>Defaultを指定するとIE11の互換モードで表示

設定方法

IE11で開く場合

compat-modeにIE11を指定します。

<site url="hostname">
  <compat-mode>IE11</compat-mode>
  <open-in>IE11</open-in>
</site>

リクエストヘッダーのUser-Agentの値はMozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Geckoになりました。

IE11の互換モードで開く場合

compat-modeにDefaultを指定します。

<site url="hostname">
  <compat-mode>Default</compat-mode>
  <open-in>IE11</open-in>
</site>

こちらは、リクエストヘッダーのUser-Agentの値はMozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E)になりました。

終わり

えーと、終わりです。これ以外にも設定値はあるみたいですが試していません。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?