Squashed 'lib/vscode/' content from commit e5a624b788

git-subtree-dir: lib/vscode
git-subtree-split: e5a624b788d92b8d34d1392e4c4d9789406efe8f
This commit is contained in:
Joe Previte
2020-12-15 15:52:33 -07:00
commit be3e823608
4649 changed files with 1311795 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<script type="text/javascript">
window.alert('hello');
</script>
<script>
window.alert('hello');
</script>

View File

@@ -0,0 +1 @@
<ion-view><button-view/><font-face></font-face></ion-view>

View File

@@ -0,0 +1,13 @@
<html>
<script type='text/html'>
<div class='foo'></div>
</script>
<script type='module'>
var x = 9;
</script>
<script type='text/ng-template'>
<div class='foo'></div>
</script>
<body class='bar'>
</body>
</html>

View File

@@ -0,0 +1,6 @@
<script>console.log('x')</script>
<style>test { display: none }</style>
<a onblur="doBlur()" onclick='doClick()' ondrag=doDrag()></a>
<div style="x { }"></div>
<div style='y { }'></div>
<div style=z{}></div>

View File

@@ -0,0 +1,42 @@
<html>
<head>
<meta charset="utf-8">
<title>VSCode Tests</title>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
<style type="text/css">
body {
color: purple;
background-color: #d8da3d;
}
</style>
</head>
<body>
<div id="mocha"></div>
<!--<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>-->
<script src="/out/vs/loader.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script>
mocha.setup('tdd');
require.config({
baseUrl: '/out',
paths: {
assert: '/test/assert.js'
}
});
require({{ modules }}, function () {
mocha.run();
});
</script>
<div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden">
<span class=codicon></span>
<span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
<span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
</div>
</body>
</html>