Comment 3 for bug 1656551

Revision history for this message
Olivier Tilloy (osomon) wrote :

I’m not seeing the issue with https://www.amazon.[com|de], they load fine on both my E4.5 and my MX4.

I am seeing the problem with your router’s web interface. Relevant bits of the logs:

[0116/080753:ERROR:cert_verify_proc_nss.cc(942)] CERT_PKIXVerifyCert for rkupper.no-ip.org failed err=-8172
qml: [JS] (https://rkupper.no-ip.org/:123) Uncaught ReferenceError: html is not defined

The first line shows up when the self-signed certificate warning page is shown.
The second line shows up when choosing to continue anyway. It looks like some javascript is trying to do some incorrect processing and the page fails to render altogether.

On desktop I see either that same error or a different one in the logs, but it also results in the page failing to render:

qml: [JS] (https://rkupper.no-ip.org/:123) Uncaught TypeError: Cannot read property 'blueBarHead' of undefined

The relevant part of the source of the page which fails to render is:

<html>
[…]
<body>
[…]
<script type="text/javascript">
[…]
function localInit() {
"use strict";
window.history.replaceState({}, '', '/');
html.blueBarHead({
"type": "login",
title: data.bluBarTitle,
parent: document.body
});
login.init(data);
}
localInit();
</script>
</body>
</html>

The 'html' variable is being defined in a script that’s loaded earlier, https://rkupper.no-ip.org/js/html.js. It looks like that script might not have been loaded yet at that point? I wonder if that's related with the certificate error at all? Adding an oxide task for further investigation.