26 lines
933 B
HTML
26 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Unit Tests for svgutils.js</title>
|
|
<link rel="stylesheet" href="qunit/qunit.css"/>
|
|
<script src="../editor/jquery.js"></script>
|
|
<script src="../editor/svgedit.js"></script>
|
|
<!-- svgutils.js depends on these three... mock out? -->
|
|
<script src="../editor/pathseg.js"></script>
|
|
<script src="../editor/browser.js"></script>
|
|
<script src="../editor/svgtransformlist.js"></script>
|
|
<script src="../editor/jquery-svg.js"></script> <!-- has $.attr() that takes an array . Used by svgedit.utilities.getPathDFromElement -->
|
|
<script src="../editor/svgutils.js"></script>
|
|
<script src="qunit/qunit.js"></script>
|
|
<script src="svgutils_test.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1 id="qunit-header">Unit Tests for svgutils.js</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests"></ol>
|
|
<div id="sandbox"></div>
|
|
</body>
|
|
</html>
|