-
Notifications
You must be signed in to change notification settings - Fork 4
/
panel.html
41 lines (41 loc) · 1.63 KB
/
panel.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
<!DOCTYPE html>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this file,
- You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="reduceNode.js"></script>
<script src="beautify.js"></script>
<script src="beautify-css.js"></script>
<script src="beautify-html.js"></script>
<script src="panel.js"></script>
<link href="panel.css" rel="stylesheet"></link>
</head>
<body>
<div id="controls">
<button id="reduce"></button>
<button id="beautify" disabled></button>
<button id="refine" disabled></button>
<label id="alsoIncludeAncestors"><input type="checkbox" checked></label>
<label id="alsoIncludeCSSFonts"><input type="checkbox" checked></label>
<label id="alsoIncludeAllMedias"><input type="checkbox" checked></label>
<label id="alsoIncludeMetas"><input type="checkbox" checked></label>
<label id="alsoIncludePageRules"><input type="checkbox"></label>
<label id="alsoIncludeScripts"><input type="checkbox"></label>
</div>
<div id="exports">
<label id="showSameViewportSize"><input type="checkbox"></label>
<div class="flexSpace"></div>
<button id="openInCodepen" disabled></button>
<button id="openInJSBin" disabled></button>
<button id="openInJSFiddle" disabled></button>
<button id="openInNewTab" disabled></button>
</div>
<textarea placeholder="Reduced test-case"></textarea>
<div id="preview">
<iframe srcdoc="Preview"></iframe>
</div>
</body>
</html>