2013-02-20 15:34:42 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-10-29 03:32:01 +00:00
|
|
|
<meta charset="utf-8" />
|
2013-02-20 15:34:42 +00:00
|
|
|
<title>Unit Tests for jquery-svg.js</title>
|
|
|
|
<link rel='stylesheet' href='qunit/qunit.css' type='text/css'/>
|
2013-10-14 02:02:33 +00:00
|
|
|
<script src='../editor/jquery.js'></script>
|
2013-10-14 03:18:03 +00:00
|
|
|
<script src='qunit/qunit.js'></script>
|
2013-10-14 02:02:33 +00:00
|
|
|
<script>
|
2013-02-20 15:34:42 +00:00
|
|
|
$(function() {
|
|
|
|
// log function
|
2014-04-07 05:33:44 +00:00
|
|
|
QUnit.log = function(details) {
|
2013-02-20 15:34:42 +00:00
|
|
|
if (window.console && window.console.log) {
|
2014-04-07 05:33:44 +00:00
|
|
|
window.console.log(details.result +' :: '+ details.message);
|
2013-02-20 15:34:42 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 id='qunit-header'>Unit Tests for jquery-svg</h1>
|
|
|
|
<h2 id='qunit-banner'></h2>
|
|
|
|
<h2 id='qunit-userAgent'></h2>
|
|
|
|
<ol id='qunit-tests'></ol>
|
|
|
|
<div id='root' style=''></div>
|
|
|
|
</body>
|
|
|
|
</html>
|