-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.html
35 lines (30 loc) · 819 Bytes
/
tests.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
---
layout: page
permalink: test.html
sidebar: default
---
<h1>Tests</h1>
{% for result in site.data.results %}
<h2>{{result[0] | capitalize }}</h2>
{% for stat in result[1] %}
<!-- begin test -->
<h3>{{stat.title | capitalize }}</h3>
{{stat.code}}
<div aria-hidden="true">
<h5>Code</h5>
{% highlight html linenos codehilite %}
{{stat.code}}
{% endhighlight %}
<!--
{% for api in stat.APIs %}
<h4>{{ api[0] }}</h4>
{% for browser in api[1].browsers %}
<pre>{{ browser | jsonify }}</pre>
{% endfor %}
{% endfor %}
-->
{% include custom/screen_reader_result.liquid %}
</div>
<!-- end test -->
{% endfor %}
{% endfor %}