add HTML5 doctype to all tests
[dygraphs.git] / tests / native-format.html
index 09a5235..03320f5 100644 (file)
@@ -1,10 +1,12 @@
+<!DOCTYPE html>
 <html>
   <head>
     <title>Native Format</title>
     <!--[if IE]>
-    <script type="text/javascript" src="excanvas.js"></script>
+    <script type="text/javascript" src="../excanvas.js"></script>
     <![endif]-->
-    <script type="text/javascript" src="../dygraph-combined.js"></script>
+    <script type="text/javascript" src="../strftime/strftime-min.js"></script>
+    <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
     <script type="text/javascript" src="../dygraph-canvas.js"></script>
     <script type="text/javascript" src="../dygraph.js"></script>
   </head>
     <div id="graphdiv2"></div>
     <script type="text/javascript">
       g2 = new Dygraph(document.getElementById("graphdiv2"),
-                       [ 
+                       [
                          [1,10,100],
                          [2,20,80],
                          [3,50,60],
-                         [4,70,80],
+                         [4,70,80]
                        ],
                        {
-                         labels: [ "A", "B" ]
+                         labels: [ "x", "A", "B" ]
                        });
     </script>
   </body>