mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-28 14:47:53 +00:00
43 lines
723 B
HTML
43 lines
723 B
HTML
<!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="
|
|
default-src
|
|
'none'
|
|
;
|
|
img-src
|
|
'self'
|
|
data:
|
|
;
|
|
script-src
|
|
'self'
|
|
blob:
|
|
'nonce-0c6a828f1297'
|
|
;
|
|
style-src
|
|
'self'
|
|
'unsafe-inline'
|
|
;
|
|
connect-src
|
|
'self'
|
|
https:
|
|
;
|
|
font-src
|
|
'self'
|
|
;
|
|
">
|
|
<link rel="stylesheet" href="./processExplorerMain.css">
|
|
</head>
|
|
|
|
<body aria-label="">
|
|
<div id="process-list"></div>
|
|
</body>
|
|
|
|
<!-- Startup (do not modify order of script tags!) -->
|
|
<script src="./processExplorer.js" type="module"></script>
|
|
</html>
|