-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpanel.html
More file actions
78 lines (65 loc) · 1.85 KB
/
panel.html
File metadata and controls
78 lines (65 loc) · 1.85 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
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="panel.js"></script>
<script type="text/javascript" src="prism.js" data-manual></script>
<link href="prism.css" rel="stylesheet" />
<style>
html {
display: block;
height: 100%;
min-height: 100%;
}
body {
display: flex;
flex-direction: column;
flex: 1 1 0;
height: 100%;
box-sizing: border-box;
margin: 0;
padding: 8px;
}
pre {
display: flex;
flex: 1 auto;
overflow-y: auto;
padding: 0 !important;
}
code {
flex: 1 0 100%;
padding: 8px;
}
header {
display: flex;
flex-direction: row;
}
footer {
display: flex;
flex-direction: row;
min-height: 24px;
padding-top: 8px;
}
</style>
</head>
<body>
<h1>
<img src="icon48.png" style="vertical-align: middle;"/>
Protractor Recorder
</h1>
<header>
<div style="flex: 1 0 auto;">
Record Protractor tests by interacting with the page via mouse or touch.
</div>
<input type="checkbox" id="nosync"/>
<label for="nosync">Disable automatic synchronization</label>
</header>
<pre><code class="language-javascript" contenteditable="true" spellcheck="false"></code></pre>
<footer>
<button id="copy" style="display: none;">Copy to Clipboard</button>
<button id="clear" style="display: none;">Clear</button>
<div id="message" style="flex: 1 1 0; font-style: italic; text-align: right;"></div>
</footer>
</body>
</html>