1 <!-- A local source file that allows dygraph developers to test locally. --
>
4 <!-- Standard Dygraph scripts --
>
5 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
7 <script type=
"text/javascript" src=
"../../excanvas.js"></script>
9 <script type=
"text/javascript" src=
"../../strftime/strftime-min.js"></script>
10 <script type=
"text/javascript" src=
"../../rgbcolor/rgbcolor.js"></script>
11 <script type=
"text/javascript" src=
"../../dygraph-canvas.js"></script>
12 <script type=
"text/javascript" src=
"../../dygraph.js"></script>
14 <!-- Scripts for automated tests --
>
15 <script type=
"text/javascript" src=
"../lib/jquery-1.4.2.js"></script>
16 <script type=
"text/javascript" src=
"../lib/Asserts.js"></script>
17 <script type=
"text/javascript" src=
"fake-jstestdriver.js"></script>
18 <script type=
"text/javascript" src=
"../tests/Proxy.js"></script>
19 <script type=
"text/javascript" src=
"../tests/CanvasAssertions.js"></script>
20 <script type=
"text/javascript" src=
"../tests/sanity.js"></script>
21 <script type=
"text/javascript" src=
"../tests/simple_drawing.js"></script>
24 <div id='graph'
></div>
25 This file is really nothing more than all the tests coalesced into a single
26 HTML file. To run a test, open a Javascript console and execute, for
28 <code>tc = new SimpleDrawingTestCase() ;
<br>
29 tc.runTest(
"testDrawSimpleRangePlusOne")
</code>