2013-07-05 07:23:52 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-08-16 04:57:44 +00:00
|
|
|
<meta name="copyright" content="Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
|
2017-02-02 01:51:35 +00:00
|
|
|
|
2013-08-16 04:57:44 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the “License”);
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2017-02-02 01:51:35 +00:00
|
|
|
|
2013-08-16 04:57:44 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2017-02-02 01:51:35 +00:00
|
|
|
|
2013-08-16 04:57:44 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an “AS IS” BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.">
|
2014-05-23 11:03:03 +00:00
|
|
|
<title>Snap Tests</title>
|
2013-07-11 03:23:37 +00:00
|
|
|
<style media="screen">
|
|
|
|
svg {
|
|
|
|
position: absolute;
|
2013-12-23 01:26:40 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2013-07-11 03:23:37 +00:00
|
|
|
}
|
|
|
|
</style>
|
2013-09-09 00:33:59 +00:00
|
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
|
2013-09-25 05:52:57 +00:00
|
|
|
<script src="../dist/snap.svg.js"></script>
|
2013-07-05 07:23:52 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="mocha"></div>
|
2014-05-07 08:37:05 +00:00
|
|
|
<script src="../node_modules/expect.js/index.js"></script>
|
2013-09-09 00:33:59 +00:00
|
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
2013-07-11 03:23:37 +00:00
|
|
|
<script>mocha.setup("bdd");</script>
|
2013-09-05 00:29:15 +00:00
|
|
|
<script src="system.js"></script>
|
|
|
|
<script src="paper.js"></script>
|
2013-09-25 05:52:57 +00:00
|
|
|
<script src="snap-tests.js"></script>
|
2014-05-25 07:52:40 +00:00
|
|
|
<script src="class.js"></script>
|
2013-09-05 00:29:15 +00:00
|
|
|
<script src="primitives.js"></script>
|
|
|
|
<script src="colors.js"></script>
|
|
|
|
<script src="attrs.js"></script>
|
2014-05-15 06:58:04 +00:00
|
|
|
<script src="attradd.js"></script>
|
2013-09-05 00:29:15 +00:00
|
|
|
<script src="path.js"></script>
|
2013-09-09 22:38:51 +00:00
|
|
|
<script src="element.js"></script>
|
2017-02-05 02:17:33 +00:00
|
|
|
<script src="gradients.js"></script>
|
2013-09-18 22:34:25 +00:00
|
|
|
<script src="set.js"></script>
|
2013-09-17 17:35:36 +00:00
|
|
|
<script src="filter.js"></script>
|
2013-09-18 22:34:25 +00:00
|
|
|
<script src="matrix.js"></script>
|
|
|
|
<script src="mina.js"></script>
|
2017-02-02 01:51:35 +00:00
|
|
|
<svg id="svgroot"></svg>
|
2013-07-05 07:23:52 +00:00
|
|
|
<script>
|
|
|
|
mocha.checkLeaks();
|
2017-02-02 01:51:35 +00:00
|
|
|
mocha.run();
|
2013-07-05 07:23:52 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
2017-02-02 01:51:35 +00:00
|
|
|
</html>
|