forked from Roenbaeck/anchor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunsupported.html
92 lines (92 loc) · 2.84 KB
/
unsupported.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Your browser is not supported</title>
<style type="text/css">
table {
border-collapse: collapse;
}
td {
padding: 4px 12px 4px 4px;
border: 1px solid gray;
}
th {
padding: 4px 12px 4px 4px;
text-align: left;
}
/* functional support */
.full {
background: #6f6;
}
.medium {
background: #ff6;
}
.none {
background: #f88;
}
/* performance */
.fast {
background: #6f6;
}
.good {
background: #ff6;
}
.slow {
background: #f88;
}
/* recommendations */
.recommended {
font-weight: bold;
background: #6f6;
}
.unsupported {
background: #f88;
}
</style>
</head>
<body>
<h1>Your browser is not supported!</h1>
<p>
In order to use this application get a browser that supports it (without red marks):
</p>
<table>
<tr>
<th>Browser</th><th>Version</th><th>Performance</th><th>Functionality</th>
</tr>
<tr class="recommended">
<td>Chrome</td><td>6 or later</td><td class="fast">Fast</td><td class="full">Full</td>
</tr>
<tr>
<td>Chrome</td><td>5</td><td class="fast">Fast</td><td class="medium">Almost full</td>
</tr>
<tr class="recommended">
<td>Firefox</td><td>8 or later</td><td class="fast">Fast</td><td class="full">Full</td>
</tr>
<tr>
<td>Firefox</td><td>4</td><td class="slow">Slow</td><td class="full">Full</td>
</tr>
<tr>
<td>Firefox</td><td>3.6</td><td class="slow">Slow</td><td class="none">Full, but linefeed bug when pasting generated SQL</td>
</tr>
<tr class="recommended">
<td>Safari</td><td>6 or later</td><td class="fast">Fast</td><td class="full">Full</td>
</tr>
<tr>
<td>Safari</td><td>5</td><td class="good">Good</td><td class="medium">Almost full, cannot load local files</td>
</tr>
<tr class="recommended">
<td>Opera</td><td>20 or later</td><td class="fast">Fast</td><td class="full">Full</td>
</tr>
<tr>
<td>Opera</td><td>11.5</td><td class="slow">Slow</td><td class="medium">Almost full, no cloud connection</td>
</tr>
<tr>
<td>Opera</td><td>10.6</td><td class="good">Good</td><td class="none">Partial</td>
</tr>
<tr class="unsupported">
<td>Internet Explorer</td><td>9</td><td class="fast">Fast</td><td class="none">Almost no functionality</td>
</tr>
</table>
</body>
</html>