-
Notifications
You must be signed in to change notification settings - Fork 939
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.65 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.65 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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sizzle Performance Suite</title>
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" media="screen" href="speed.css">
</head>
<body>
<header id="header">
<img id="logo" src="images/logo.png" alt="Sizzle">
<h4>Sizzle Performance Suite built with <a href="http://benchmarkjs.com">benchmarkjs</a> and <a href="http://requirejs.org">requirejs</a></h4>
<ul>
<li>Every selector engine gets its own iframe</li>
<li>iframes are destroyed and reset after <i>each</i> selector, so no selector can affect another</li>
<li>Tests are run against <a href="data/selector.html">this page</a></li>
<li><b>Note:</b> <code>querySelectorAll</code> and <code>querySelector</code> are nullified by default. However, you can <a href="?qsa">enable QSA</a>.</li>
</ul>
</header>
<article id="main" role="main" class="clear">
<table class="table table-bordered">
<thead id="perf-table-headers"></thead>
<tbody id="perf-table-body"></tbody>
</table>
<h3>Legend</h3>
<table class="table table-bordered">
<thead>
<tr>
<th>faster</th>
<th>slower</th>
<th>exception thrown</th>
<th>different returned elements</th>
</tr>
</thead>
<tbody>
<tr>
<td class="green"> </td>
<td class="red"> </td>
<td class="black"> </td>
<td class="yellow"> </td>
</tr>
</tbody>
</table>
</article>
<footer>
<small>Copyright © 2013 jQuery Foundation</small>
</footer>
<script src="../external/requirejs/require.js" data-main="speed"></script>
</body>
</html>