几天以来,我注意到以前工作的chrome中的url解析存在问题。
实际上,当使用iframe或anchor html标记直接在url中使用基本访问身份验证时,最终到达的链接不正确。
例如来自domain1.tld的页面:
<iframe src="https://bob:thepasswd@domain2.tld"></iframe>
或
<a href="https://bob:thepasswd@domain2.tld">Test</a>
将导致访问网址
https://domain1.tld/https:/bob:thepasswd@domain2.tld
请注意,SSL证书有效且设置了跨域指令。 调试控制台没有消息。
测试的Chrome版本(在Windows 10 x64下):
Firefox和Opera工作正常。
我错过了什么或是一个已知的问题?在网上找不到更多。