-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
114 lines (107 loc) · 4.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html>
<head>
<!-- META -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WolfenSheep - TEST</title>
<!-- CSS -->
<link rel="stylesheet" href="style/normalize.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="style/material.light_blue-orange.min.css" />
<link href="//fonts.googleapis.com/css?family=Roboto:400,100,500,300italic,500italic,700italic,900,300">
<link rel="stylesheet" href="./style/main.css" />
<link rel="stylesheet" href="./style/test.css" />
<!-- JS -->
<script defer src="scripts/lib/material.min.js"></script>
<script data-main="scripts/test" src="scripts/lib/require.js"></script>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<div class="mdl-layout-spacer"></div>
<form method="GET">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable">
<label class="mdl-button mdl-js-button mdl-button--icon" for="grep">
<i class="material-icons">search</i>
</label>
<div class="mdl-textfield__expandable-holder">
<input class="mdl-textfield__input" type="text" name="grep" id="grep">
<label class="mdl-textfield__label" for="grep-expandable">
Expandable Input
</label>
</div>
</div>
</form>
<div class="mdl-layout-spacer"></div>
<span class="mdl-layout-title TestReport">
<a href="test.html" class="InvisibleLink">
Test: <span class="tests-quantity">0</span> |
<i class="material-icons">access_time</i>
<span class="tests-time">0</span>ms |
<i class="material-icons mdl-list__item-avatar icon-succeed">
done
</i> <span class="tests-succeed-quantity">0</span>
</a>
|
<a href="test.html?failOnly" class="InvisibleLink">
<i class="material-icons mdl-list__item-avatar icon-failed">
close
</i> <span class="tests-failed-quantity">0</span>
</a>
</span>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">WolfenSheep - Test</span>
<!-- Navigation -->
<nav class="mdl-navigation">
<a
class="
mdl-button
mdl-js-button
mdl-js-ripple-effect
mdl-button--large
mdl-button--colored
mdl-button--raised
"
href="index.html">
Go to main
</a>
<a
class="
mdl-button
mdl-js-button
mdl-js-ripple-effect
mdl-button--large
mdl-button--accent
mdl-button--raised
"
href="test.html">
Run all tests
</a>
<a
class="
action-button-failOnly
mdl-button
mdl-js-button
mdl-js-ripple-effect
mdl-button--large
mdl-button--colored
mdl-button--raised
"
href="test.html?failOnly"
disabled>
Run failed tests
</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div class="TestResultsArea mdl-list">
</div>
</div>
</main>
</div>
</body>
</html>