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

Unified Diff: Source/devtools/front_end/profiler/d3js_trace/index.html

Issue 887673002: DevTools: CPU profiler sunburst view (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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: Source/devtools/front_end/profiler/d3js_trace/index.html
diff --git a/Source/devtools/front_end/profiler/d3js_trace/index.html b/Source/devtools/front_end/profiler/d3js_trace/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..d3cdff7fa149d6b7b0ea6e11186a1839189135db
--- /dev/null
+++ b/Source/devtools/front_end/profiler/d3js_trace/index.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Sequences sunburst</title>
+ <script src="http://d3js.org/d3.v3.js"></script>
+ <link rel="stylesheet" type="text/css"
+ href="https://fonts.googleapis.com/css?family=Open+Sans:400,600">
+ <link rel="stylesheet" type="text/css" href="sequences.css"/>
+ </head>
+ <body>
+ <div id="main">
+ <div id="sequence"></div>
+ <div id="chart">
+ <div id="explanation" style="visibility: hidden;">
+ <span id="percentage"></span><br/>
+ <span id="funcname"></span>
+ </div>
+ </div>
+ </div>
+ <div id="sidebar">
+ <input type="checkbox" id="togglelegend"> Legend<br/>
+ <div id="legend" style="visibility: hidden;"></div>
+ </div>
+ <script type="text/javascript" src="sequences.js"></script>
+ <script type="text/javascript">
+ // Hack to make this example display correctly in an iframe on bl.ocks.org
+ d3.select(self.frameElement).style("height", "700px");
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698