This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtest.html
55 lines (48 loc) · 2.53 KB
/
test.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
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://code.jquery.com/qunit/git/qunit.js"></script>
<script src="jquery.microdata.js"></script>
<script src="schemas.js"></script>
<script src="test.js"></script>
</head>
<body style="padding-bottom:200px">
<h1 id="qunit-header">QUnit example</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<ul class="tests">
<!-- a single item with no vocabulary -->
<li itemscope id="single-item-no-vocabulary">
<p itemprop="description">This is a description</p>
</li>
<!-- single item with vocabulary, no properties -->
<li itemscope id="vocab-no-properties" itemtype="http://example.org/Type">
</li>
<!-- multiple values, single property -->
<li itemscope id="multi-value-single-prop" itemtype="http://example.org/Multivalue">
<p itemprop="attending">Peter Bishop</p>
<p itemprop="attending">Walter Bishop</p>
</li>
<!-- multiple properties, single value -->
<li itemscope id="multi-prop-single-value" itemtype="http://example.org/Multiprop">
<p itemprop="admin user">true</p>
</li>
<!-- single item with one required and one missing property per the vocabulary rules -->
<li itemscope id="single-item-missing-property" itemtype="http://data-vocabulary.org/Event">
<p itemprop="summary">This is the event summary</p>
</li>
<!-- single item with both required properties, but one invalid property -->
<li itemscope id="single-item-invalid-property" itemtype="http://data-vocabulary.org/Event">
<p itemprop="summary">Event summary</p>
<time datetime="2011-08-05x" itemprop="startdate">Aug 5th 2011</time>
</li>
</ul>
</div>
</body>
</html>