mirror of
https://github.com/servo/servo.git
synced 2025-06-04 07:35:36 +00:00
Fixes #8640. This commit adds a neterror page that displays really really basic information about what went wrong with your request, which is an improvement over the current state of blank page. It also fixes the problem of certificate validation errors not triggering the cert error page, since for some reason the function string seems to have turned lowercase.
8 lines
135 B
HTML
8 lines
135 B
HTML
<html>
|
|
<head>
|
|
<title>Error loading page</title>
|
|
</head>
|
|
<body>
|
|
<p>Could not load the requested page: ${reason}</p>
|
|
</body>
|
|
</html>
|