mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 18:32:56 +01:00
39 lines
691 B
HTML
39 lines
691 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<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>
|