forked from LeaVerou/css3test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NCF Test</title>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="css/style.css">
<script src="js/extend.js"></script>
<script src="js/utils.js"></script>
<script src="js/specs.js"></script>
<script src="js/supports.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<header>
<h1>Your browser scores <strong id="score">0%</strong></h1>
<p>
Determined by passing <strong id="passedTests"></strong> tests
out of <strong id="totalTests"></strong>
total for <strong id="total"></strong> features
</p>
</header>
<section id="all"></section>
<aside>
<section class="about">
<p>
<a href="https://github.com/syoichi/ncftest">NCF Test</a> is Fork of
<a href="http://lea.verou.me">Lea Verou</a>'s
<a href="http://css3test.com/">The CSS3 Test</a>.
This test is New CSS Features Test by checking Syntax Parsing,
<em>NOT</em> Layout/Rendering.
Inactive Specs is <a href="inactive-specs.html">here</a>.
</p>
</section>
<section>
<p>
Bug reports and feature proposal are welcome!
Issue Tracker is
<a href="https://github.com/syoichi/ncftest/issues">here</a>.
</p>
</section>
<p class="time">Time taken: <strong id="timeTaken"></strong></p>
<section class="spec-list">
<h1>Specs tested:</h1>
<ul id="testedSpecs"></ul>
</section>
</aside>
</body>
</html>