forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmoketest.html
More file actions
42 lines (38 loc) · 693 Bytes
/
smoketest.html
File metadata and controls
42 lines (38 loc) · 693 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style>
#errors {
position:fixed;
top:0;
right:0;
font-size: 20px;
width: 100px;
height: 100px;
}
body {
height: 100%;
}
#editor {
float:left;
width: 1250px;
}
</style>
</head>
<body>
<h2>Smoke Test</h2>
<div id="control"></div>
<div id="editor"></div>
<div id="errors"></div>
<div style="clear:both"></div>
<script src="../metadata.js"></script>
<script src="dev-setup.js"></script>
<script>
loadEditor(function() {
require(['./smoketest'], function() {});
});
</script>
</body>
</html>