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=
"../../dygraph-dev.js"></script>
11 <!-- Scripts for library support --
>
12 <script type=
"text/javascript" src=
"../lib/jquery-1.4.2.js"></script>
13 <script type=
"text/javascript" src=
"../lib/Asserts.js"></script>
14 <script type=
"text/javascript" src=
"fake-jstestdriver.js"></script>
15 <script type=
"text/javascript" src=
"../tests/Proxy.js"></script>
16 <script type=
"text/javascript" src=
"../tests/CanvasAssertions.js"></script>
17 <script type=
"text/javascript" src=
"../tests/DygraphOps.js"></script>
18 <script type=
"text/javascript" src=
"../tests/PixelSampler.js"></script>
19 <script type=
"text/javascript" src=
"../tests/Util.js"></script>
20 <script type=
"text/javascript" src=
"local.js"></script>
22 <!-- Scripts for automated tests --
>
23 <script type=
"text/javascript" src=
"../tests/annotations.js"></script>
24 <script type=
"text/javascript" src=
"../tests/axis_labels.js"></script>
25 <script type=
"text/javascript" src=
"../tests/axis_labels-deprecated.js"></script>
26 <script type=
"text/javascript" src=
"../tests/callback.js"></script>
27 <script type=
"text/javascript" src=
"../tests/connect_separated_points.js"></script>
28 <script type=
"text/javascript" src=
"../tests/css.js"></script>
29 <script type=
"text/javascript" src=
"../tests/custom_bars.js"></script>
30 <script type=
"text/javascript" src=
"../tests/date_formats.js"></script>
31 <script type=
"text/javascript" src=
"../tests/dygraph-options-tests.js"></script>
32 <script type=
"text/javascript" src=
"../tests/error_bars.js"></script>
33 <script type=
"text/javascript" src=
"../tests/formats.js"></script>
34 <script type=
"text/javascript" src=
"../tests/grid_per_axis.js"></script>
35 <script type=
"text/javascript" src=
"../tests/interaction_model.js"></script>
36 <script type=
"text/javascript" src=
"../tests/missing_points.js"></script>
37 <script type=
"text/javascript" src=
"../tests/multi_csv.js"></script>
38 <script type=
"text/javascript" src=
"../tests/multiple_axes.js"></script>
39 <script type=
"text/javascript" src=
"../tests/multiple_axes-old.js"></script>
40 <script type=
"text/javascript" src=
"../tests/no_hours.js"></script>
41 <script type=
"text/javascript" src=
"../tests/parser.js"></script>
42 <script type=
"text/javascript" src=
"../tests/pathological_cases.js"></script>
43 <script type=
"text/javascript" src=
"../tests/per_series.js"></script>
44 <script type=
"text/javascript" src=
"../tests/plugins.js"></script>
45 <script type=
"text/javascript" src=
"../tests/range_selector.js"></script>
46 <script type=
"text/javascript" src=
"../tests/range_tests.js"></script>
47 <script type=
"text/javascript" src=
"../tests/rolling_average.js"></script>
48 <script type=
"text/javascript" src=
"../tests/sanity.js"></script>
49 <script type=
"text/javascript" src=
"../tests/scientific_notation.js"></script>
50 <script type=
"text/javascript" src=
"../tests/scrolling_div.js"></script>
51 <script type=
"text/javascript" src=
"../tests/selection.js"></script>
52 <script type=
"text/javascript" src=
"../tests/simple_drawing.js"></script>
53 <script type=
"text/javascript" src=
"../tests/step_plot_per_series.js"></script>
54 <script type=
"text/javascript" src=
"../tests/stacked.js"></script>
56 <script type=
"text/javascript" src=
"../tests/tickers.js"></script>
58 <script type=
"text/javascript" src=
"../tests/to_dom_coords.js"></script>
59 <script type=
"text/javascript" src=
"../tests/resize.js"></script>
60 <script type=
"text/javascript" src=
"../tests/update_options.js"></script>
61 <script type=
"text/javascript" src=
"../tests/update_while_panning.js"></script>
62 <script type=
"text/javascript" src=
"../tests/utils_test.js"></script>
64 <style type=
"text/css">
73 /* Broken: the active anchor isn't gray. Why not? */
74 #results .activeAnchor {
79 text-decoration: none;
84 text-decoration: none;
89 text-decoration: underline;
94 <div id='graph'
></div>
95 <div id=
"selector"></div>
96 <p>This file is really nothing more than all the tests coalesced into a single
97 HTML file. To run a test, use the selector above, or
98 open a Javascript console and execute, for instance,
</p>
99 <code>testDrawSimpleRangePlusOne()
</code>
101 <p>Alternatively you can use query args:
<ul>
102 <li>testCase - for the name of the test case prototype
103 <li>testCaseName - for the name of the test case
104 <li>test - for the name of the test (use command=runTest)
105 <li>command - either runTest or runAllTests.
107 Example:
<code>local.html?testCase=ScrollingDivTestCase&test=testNestedDiv_Scrolled&command=runTest
</code>
110 <script type=
"text/javascript">
111 var tester = new DygraphsLocalTester();
112 // tester.overrideWarn(); // uncomment if you want warnings to be errors.
113 tester.processVariables();
114 addGlobalTestSymbols();