mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
63 lines (52 loc) • 1.2 kB
HTML
<html>
<head>
<title>Unit Tests</title>
<meta charset="utf-8" />
<style>
button {
margin-left: 2px;
margin-right: 2px;
}
td {
padding-left: 4px;
padding-right: 4px;
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
img {
width: 20px;
height: 20px;
}
.bold {
font-weight: bold;
}
.passed {
color: green;
}
.failed {
color: red;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<script src="../../dist/viewer.min.js"></script>
<script src="../thirdparty/jszip.min.js"></script>
<script src="../thirdparty/filesaver.js"></script>
<script src="../shared/localorhive.js"></script>
<script src="../shared/domutils.js"></script>
<script src="../shared/component.js"></script>
<script src="components/unittester.js"></script>
<script src="mdx.js"></script>
<script src="mdxprimitives.js"></script>
<script src="m3.js"></script>
<script src="base.js"></script>
<script src="index.js"></script>
</body>
</html>