Open
Description
The page https://webhint.io/docs/user-guide/hints/hint-highest-available-document-mode/#what-does-the-hint-check currently says
By default, the hint checks if the
X-UA-Compatible
response header is sent with the value ofIE=edge
, and that themeta
tag isn’t used.
My website follows the above rules, but fails the test. I guess the test is actually doing a case-sensitive match on "ie=edge". If this is the case, it should be modified to do a case-insensitive comparison. The X-UA-Compatible
header isn't case sensitive and examples use the value "IE=edge".