This repository was archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy path404.html
More file actions
41 lines (38 loc) · 2.36 KB
/
404.html
File metadata and controls
41 lines (38 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>HTML5test - How well does your browser support HTML5?</title>
<meta charset="UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="application-name" content="HTML5test">
<link rel="apple-touch-icon" sizes="57x57" href="/images/icons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/icons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/images/icons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/images/icons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/images/icons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/images/icons/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="/images/icons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/images/icons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/images/icons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/images/icons/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/images/icons/favicon-196x196.png" sizes="196x196">
<meta name="msapplication-TileColor" content="#0092bf">
<meta name="msapplication-TileImage" content="/images/icons/mstile-144x144.png">
<script>
if (location.pathname.indexOf('/s/') == 0) {
location.replace(location.pathname.replace('/s/', '/s/?').replace('.html', ''));
} else if (location.pathname.indexOf('/compare/browser/') == 0) {
location.replace(location.pathname.replace('/browser/', '/browser/?').replace('.html', ''));
} else if (location.pathname.indexOf('/compare/feature/') == 0) {
location.replace(location.pathname.replace('/feature/', '/feature/?').replace('.html', ''));
} else {
document.write('Error 404');
}
</script>
</head>
<body></body>
</html>