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">
12
<link rel="stylesheet" href="/css/reporting.css" type="text/css">
14
<script src='/scripts/base.js' type='text/javascript'></script>
15
<script src='/scripts/reporting.js' type='text/javascript'></script>
17
<meta name="application-name" content="HTML5test"/>
19
<link rel="apple-touch-icon" sizes="57x57" href="/images/icons/apple-touch-icon-57x57.png" />
20
<link rel="apple-touch-icon" sizes="114x114" href="/images/icons/apple-touch-icon-114x114.png" />
21
<link rel="apple-touch-icon" sizes="72x72" href="/images/icons/apple-touch-icon-72x72.png" />
22
<link rel="apple-touch-icon" sizes="144x144" href="/images/icons/apple-touch-icon-144x144.png" />
23
<link rel="apple-touch-icon" sizes="60x60" href="/images/icons/apple-touch-icon-60x60.png" />
24
<link rel="apple-touch-icon" sizes="120x120" href="/images/icons/apple-touch-icon-120x120.png" />
25
<link rel="apple-touch-icon" sizes="76x76" href="/images/icons/apple-touch-icon-76x76.png" />
26
<link rel="apple-touch-icon" sizes="152x152" href="/images/icons/apple-touch-icon-152x152.png" />
27
<link rel="icon" type="image/png" href="/images/icons/favicon-16x16.png" sizes="16x16" />
28
<link rel="icon" type="image/png" href="/images/icons/favicon-32x32.png" sizes="32x32" />
29
<link rel="icon" type="image/png" href="/images/icons/favicon-96x96.png" sizes="96x96" />
30
<link rel="icon" type="image/png" href="/images/icons/favicon-160x160.png" sizes="160x160" />
31
<link rel="icon" type="image/png" href="/images/icons/favicon-196x196.png" sizes="196x196" />
32
<meta name="msapplication-TileColor" content="#0092bf" />
33
<meta name="msapplication-TileImage" content="/images/icons/mstile-144x144.png" />
38
<h1><span>HTML<strong>5</strong>test</span> <em>how well does your browser support HTML5?</em></h1>
39
<div class='navigation'>
41
<li><a href='/index.html'>Your browser</a></li>
42
<li class='selected'><a href='/results/desktop.html'>Other browsers</a></li>
43
<li><a href='/compare/browser/index.html'>Compare</a></li>
46
<li><a href='http://blog.html5test.com/'>News</a></li>
47
<li><a href='/devicelab'>Device Lab</a></li>
48
<li><a href='/about.html'>About<span> the test</span></a></li>
55
<div class='paper hasNavigation'>
56
<ul class='navigation'>
57
<li><a href='/results/desktop.html'>Desktop<span> browsers</span></a></li>
58
<li><a href='/results/tablet.html'>Tablets</a></li>
59
<li><a href='/results/mobile.html'>Mobiles</a></li>
60
<li><a href='/results/other.html'>Other</a></li>
61
<li class='more'><a href='/results/search.html'>Search</a></li>
62
<li class='more selected'><a href='/results/latest.html'>Latest</a></li>
66
<div class='scorePanel'>
68
<h2>Latest results</h2>
70
<div id='scoreToggle'></div>
72
<table class='scoreTable latestTable'>
75
<th class='points'>Score</th>
76
<th class='nickname'>Browser</th>
77
<th class='ago'>When</th>
81
<?php foreach($results as $item): ?>
83
<td class='points'><a href='/s/<?php echo $item->uniqueid; ?>.html'><?php echo $item->score; ?></a></td>
84
<th class='nickname'><a href='/s/<?php echo $item->uniqueid; ?>.html'><?php echo $item->humanReadable; ?></a></th>
85
<td class='ago'><a href='/s/<?php echo $item->uniqueid; ?>.html'><?php echo $item->ago; ?> ago</a></td>
91
Please note that all data shown above are unconfirmed test results. They could be fake or
92
belong to a different browser than the one listed.
100
parent: document.getElementById('scoreToggle'),
101
inactive: 'All results',
102
active: 'My results',
103
onChange: function(active) {
104
reload(active ? 'my' : 'all');
108
function reload(type) {
110
if (window.XMLHttpRequest) {
111
httpRequest = new XMLHttpRequest();
112
} else if (window.ActiveXObject) {
113
httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
116
httpRequest.open('POST','/api/' + type + 'Results', true);
117
httpRequest.onreadystatechange = process;
118
httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
122
if (httpRequest.readyState == 4 && httpRequest.responseText != '') {
123
var data = JSON.parse(httpRequest.responseText);
129
function refresh(data) {
131
for (var i = 0; i < data.length; i++) {
134
"<td class='points'><a href='/s/" + data[i].uniqueid + ".html'>" + data[i].score + "</a></td>" +
135
"<th class='nickname'><a href='/s/" + data[i].uniqueid + ".html'>" + data[i].humanReadable + "</a></th>" +
136
"<td class='ago'><a href='/s/" + data[i].uniqueid + ".html'>" + data[i].ago + " ago</a></td>" +
141
var o = document.querySelector(".scoreTable tbody");
142
o.innerHTML = contents;
151
<div class='copyright'>
153
Created by Niels Leenheer.<br>
154
Please note that the HTML5 test is not affiliated with the W3C or the HTML5 working group.<br>
155
HTML5 Logo by <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a>.
156
Browser detection by <a href='http://whichbrowser.net'>WhichBrowser</a>.
160
<a href="http://www.cloudvps.nl" target="_blank" ><b>CloudVPS</b><br> High Availability<br> Cloud Servers</a>
168
<script src='//www.google-analytics.com/ga.js'></script>
172
var pageTracker = _gat._getTracker("UA-68192-4");
173
pageTracker._trackPageview();