Webview 无法呈现框架集

Webview unable to render frameset

我正在尝试在 Web 视图中加载网页 - https://netbanking.hdfcbank.com/netbanking/。我可以看到渲染的 dom 但帧的高度为 0。

<html><head>
<title>Welcome to HDFC Bank NetBanking</title>
<script language="javascript">
    var daemon          = 'NETBANKING';
    var p_remoteaddress = '';
    var RsaAuthReq      = '';

    var l_path = window.location.pathname;

    if(l_path == undefined || l_path == '' || l_path.indexOf("/netbanking") < 0){
        window.location.href = window.location.protocol + "//" + window.location.host +"/netbanking";
    }

</script>
</head>
    <frameset border="false" frameborder="O" framespacing="0" rows="*" cols="*">
        <frameset border="false" frameborder="O" framespacing="0" rows="*,30" cols="*">
            <frame marginwidth="0" marginheight="0" name="login_page" src="RSLogin.html?v=7" noresize="true" scrolling="yes">
            <frame marginwidth="0" marginheight="0" name="footer" src="footer.html" noresize="true" scrolling="no">
        </frameset>
    </frameset>

</html>

我可以看到在其他应用程序 webview 和 chrome 中呈现相同的内容。

网络视图是 wrap_content,已将其更改为 match_parent。