mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-04-22 15:25:47 -07:00
10e12cf743
Follow up on #5500
24 lines
522 B
HTML
24 lines
522 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>xterm.js integration test fixture</title>
|
|
<link rel="stylesheet" href="/xterm.css" />
|
|
<style>
|
|
body {
|
|
font-family: helvetica, sans-serif, arial;
|
|
font-size: 1em;
|
|
color: #111;
|
|
}
|
|
#terminal-container {
|
|
height: 60%;
|
|
margin: 0 auto;
|
|
padding: 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body id="test">
|
|
<div id="terminal-container"></div>
|
|
<script src="/dist/client-bundle.js" defer></script>
|
|
</body>
|
|
</html>
|