jinlin
2024-07-26 9b7ee2b8d22f14a0fffefb2ee371e9a655b05c54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
  <link rel='stylesheet' href='qunit/qunit.css' type='text/css'/>
  <script type='text/javascript' src='../editor/lib/jquery.js'></script>
  <script type='text/javascript' src='../editor/src/path.js'></script>
  <script type='text/javascript' src='qunit/qunit.js'></script>  
  <script type='text/javascript'>
  $(function() {
      // log function
      QUnit.log = function(result, message) {
        if (window.console && window.console.log) {
            window.console.log(result +' :: '+ message);
        }
    };
 
  });
  </script>
</head>  
<body>  
  <h1 id='qunit-header'>Unit Tests for path.js</h1>
  <h2 id='qunit-banner'></h2>
  <h2 id='qunit-userAgent'></h2>
  <ol id='qunit-tests'>
  </ol>
  <div id='anchor' style='visibility:hidden'>
  </div>
</body>  
</html>