| Index: content/browser/resources/media/content/graphTest.html
|
| diff --git a/content/browser/resources/media/content/graphTest.html b/content/browser/resources/media/content/graphTest.html
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..94f39dbf8b4671bda460908945bb991af0f36012
|
| --- /dev/null
|
| +++ b/content/browser/resources/media/content/graphTest.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <title></title>
|
| +</head>
|
| +<body>
|
| + <script src="../util/goog.js"></script>
|
| + <script src="../graphs/rangeGraph.js"></script>
|
| + <script>
|
| + var body = document.getElementsByTagName("body")[0];
|
| + var rangeGraph = new RangeGraph(1000);
|
| + body.appendChild(rangeGraph.element);
|
| + rangeGraph.setWidth(400);
|
| +
|
| + rangeGraph.plot(450, 900);
|
| + rangeGraph.plot(0, 530);
|
| + rangeGraph.draw();
|
| +
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|