monaco-editor/test/cross-origin-broken.html

27 lines
699 B
HTML
Raw Normal View History

2016-06-24 18:06:32 +08:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<h2>Monaco Editor wrong cross origin</h2>
<div style="clear:both"></div>
<div id="container" style="float:left;width:800px;height:450px;border: 1px solid grey"></div>
<div style="clear:both"></div>
<script src="../metadata.js"></script>
<script src="dev-setup.js"></script>
<script>
loadEditor(function() {
monaco.editor.create(document.getElementById('container'), {
value: document.documentElement.innerHTML,
2016-06-25 03:17:11 +08:00
language: 'css'
2016-06-24 18:06:32 +08:00
});
}, 'http://localhost:8088');
</script>
</body>
</html>