Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(721)

Unified Diff: content/browser/resources/media/content/graphTest.html

Issue 18889006: Removed old media-internals page and rewrote it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698