'Chrome iframe auth alert

I have page that conatains iframe. Iframe calls page from another domain. Page that ifraim calls have authenthication NTLM;Negotiate. When I open my page in Chrome, request in iframe gets 401 and do not open default alert for login and password. So page inside iframe do not work. When I open my page in IE, all works good. How can I make this page works good in Chrome browser? My page below:

<!DOCTYPE html>
<html>
<body>
    <h1>Iframe page</h1>
    <iframe id="ifr" src="http://%another_host%/OldSalesComplect/Sale.aspx" style="width: 1400px; height: 800px;"></iframe>
</body>
</html>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source