Squashed 'lib/vscode/' content from commit e5a624b788
git-subtree-dir: lib/vscode git-subtree-split: e5a624b788d92b8d34d1392e4c4d9789406efe8f
This commit is contained in:
6
extensions/html/test/colorize-fixtures/12750.html
Normal file
6
extensions/html/test/colorize-fixtures/12750.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<script type="text/javascript">
|
||||
window.alert('hello');
|
||||
</script>
|
||||
<script>
|
||||
window.alert('hello');
|
||||
</script>
|
||||
1
extensions/html/test/colorize-fixtures/13448.html
Normal file
1
extensions/html/test/colorize-fixtures/13448.html
Normal file
@@ -0,0 +1 @@
|
||||
<ion-view><button-view/><font-face></font-face></ion-view>
|
||||
13
extensions/html/test/colorize-fixtures/25920.html
Normal file
13
extensions/html/test/colorize-fixtures/25920.html
Normal 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>
|
||||
@@ -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>
|
||||
42
extensions/html/test/colorize-fixtures/test.html
Normal file
42
extensions/html/test/colorize-fixtures/test.html
Normal 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>
|
||||
Reference in New Issue
Block a user