4
<title>HTML5test - How well does your browser support HTML5?</title>
7
<meta name="apple-mobile-web-app-capable" content="yes">
8
<meta name="apple-mobile-web-app-status-bar-style" content="black">
9
<meta name="viewport" content="width=device-width, initial-scale=1.0">
11
<link rel="stylesheet" href="/css/main.css" type="text/css">
13
<script src='/scripts/base.js' type='text/javascript'></script>
14
<script src='/scripts/<?php echo $release; ?>/data.js' type='text/javascript'></script>
15
<script src='/scripts/<?php echo $release; ?>/engine.js' type='text/javascript'></script>
16
<script src='/scripts/reporting.js' type='text/javascript'></script>
18
<meta name="application-name" content="HTML5test"/>
20
<link rel="apple-touch-icon" sizes="57x57" href="/images/icons/apple-touch-icon-57x57.png" />
21
<link rel="apple-touch-icon" sizes="114x114" href="/images/icons/apple-touch-icon-114x114.png" />
22
<link rel="apple-touch-icon" sizes="72x72" href="/images/icons/apple-touch-icon-72x72.png" />
23
<link rel="apple-touch-icon" sizes="144x144" href="/images/icons/apple-touch-icon-144x144.png" />
24
<link rel="apple-touch-icon" sizes="60x60" href="/images/icons/apple-touch-icon-60x60.png" />
25
<link rel="apple-touch-icon" sizes="120x120" href="/images/icons/apple-touch-icon-120x120.png" />
26
<link rel="apple-touch-icon" sizes="76x76" href="/images/icons/apple-touch-icon-76x76.png" />
27
<link rel="apple-touch-icon" sizes="152x152" href="/images/icons/apple-touch-icon-152x152.png" />
28
<link rel="icon" type="image/png" href="/images/icons/favicon-16x16.png" sizes="16x16" />
29
<link rel="icon" type="image/png" href="/images/icons/favicon-32x32.png" sizes="32x32" />
30
<link rel="icon" type="image/png" href="/images/icons/favicon-96x96.png" sizes="96x96" />
31
<link rel="icon" type="image/png" href="/images/icons/favicon-160x160.png" sizes="160x160" />
32
<link rel="icon" type="image/png" href="/images/icons/favicon-196x196.png" sizes="196x196" />
33
<meta name="msapplication-TileColor" content="#0092bf" />
34
<meta name="msapplication-TileImage" content="/images/icons/mstile-144x144.png" />
39
<h1><span>HTML<strong>5</strong>test</span> <em>how well does your browser support HTML5?</em></h1>
40
<div class='navigation'>
42
<li><a href='/index.html'>Your browser</a></li>
43
<li class='selected'><a href='/results/desktop.html'>Other browsers</a></li>
44
<li><a href='/compare/browser/index.html'>Compare</a></li>
47
<li><a href='http://blog.html5test.com/'>News</a></li>
48
<li><a href='/devicelab'>Device Lab</a></li>
49
<li><a href='/about.html'>About the test</a></li>
54
<?php if (isset($legacy) && $legacy): ?>
57
The following results were created in an older version of the test suite. If you test the same browser
58
on the current site, it may get a different score and different results.
64
<div class='page saved'>
65
<div id='contents' class='column'>
66
<div id='score'></div>
67
<div id='results'></div>
71
<div class='copyright'>
73
Created by Niels Leenheer.<br>
74
Please note that the HTML5 test is not affiliated with the W3C or the HTML5 working group.<br>
75
HTML5 Logo by <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a>.
76
Browser detection by <a href='http://whichbrowser.net'>WhichBrowser</a>.
80
<a href="http://www.cloudvps.nl" target="_blank" ><b>CloudVPS</b><br> High Availability<br> Cloud Servers</a>
92
<?php if (isset($one) && $one != ''): ?>
93
var r = <?php echo $one; ?>;
94
var m = new Metadata(tests);
98
if (<?php echo $release; ?> < 8) {
100
c.maximum = r.maximum;
102
c = new Calculate(r, m.data);
105
var container = document.getElementById('score');
106
container.innerHTML =
107
"<div class='pointsPanel'>" +
108
"<h2><span>This browser scored</span> <strong>" + c.score + "</strong> <span>out of " + c.maximum + " points</span></h2>" +
111
var useragent = document.createElement('div');
112
useragent.className = 'useragent';
113
container.appendChild(useragent);
115
useragent.innerHTML =
116
"<p>This score was recorded using " + r.humanReadable + "</p>" +
117
"<div class='expandWidget'>▼</div>" +
118
"<div class='expandedPanel'>" +
120
"<tr><th>Useragent:</th><td>" + r.useragent + "</td></tr>" +
121
(r.deviceHeight > 0 && r.deviceWidth > 0 ? "<tr><th>Screen size:</th><td>" + r.deviceWidth + " x " + r.deviceHeight + " px</td></tr>" : "") +
125
useragent.addEventListener('click', function() {
126
if (useragent.className.indexOf(' expanded') == -1)
127
useragent.className += ' expanded';
129
useragent.className = useragent.className.replace(' expanded', '');
133
var wrapper = document.createElement('div');
134
wrapper.className = 'wrapper';
135
container.appendChild(wrapper);
137
var buttons = document.createElement('div');
138
buttons.className = 'buttons';
139
wrapper.appendChild(buttons);
141
var button = document.createElement('a');
142
button.className = 'button latest';
143
button.href = '/results/related/' + r.fingerprint + '.html';
144
button.innerHTML = '<span>Related results...</span>';
145
buttons.appendChild(button);
147
var button = document.createElement('a');
148
button.className = 'button compare';
149
button.href = '/compare/browser/' + r.id + '.html';
150
button.innerHTML = '<span>Compare to...</span>';
151
buttons.appendChild(button);
153
var button = document.createElement('span');
154
button.className = 'button share';
155
button.innerHTML = '<span>Share</span>';
156
buttons.appendChild(button);
160
browser: r.humanReadable
163
var button = document.createElement('a');
164
button.className = 'button donate';
165
button.href = 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9DNBJPQFEHYSC';
166
button.innerHTML = '<span>Donate</span>';
167
buttons.appendChild(button);
170
var container = document.getElementById('results');
171
var div = document.createElement('div');
172
div.className = 'resultsTable detailsTable';
173
container.appendChild(div);
175
var table = new ResultsTable({
187
table.updateColumn(0, r);
191
var _gaq = _gaq || [];
192
_gaq.push(['_setAccount', 'UA-68192-4']);
193
_gaq.push(['_trackPageview']);
196
var ga = document.createElement('script');
197
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
198
ga.setAttribute('async', 'true');
199
document.documentElement.firstChild.appendChild(ga);