Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions src/cargo/core/compiler/timings/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,6 @@ static HTML_CANVAS: &str = r#"
<td title="Scale corresponds to a number of pixels per second. It is automatically initialized based on your viewport width.">
<label for="scale">Scale:</label>
</td>
<td>Renderer:</td>
</tr>
<tr>
<td><input type="range" min="0" max="30" step="0.1" value="0" id="min-unit-time"></td>
Expand All @@ -761,16 +760,6 @@ static HTML_CANVAS: &str = r#"
based on the client viewport.
-->
<td><input type="range" min="1" max="100" value="50" id="scale"></td>
<td>
<label>
<input type="radio" name="renderer" value="canvas" checked />
Canvas
</label>
<label>
<input type="radio" name="renderer" value="svg" />
SVG
</label>
</td>
</tr>
<tr>
<td><output for="min-unit-time" id="min-unit-time-output"></output></td>
Expand All @@ -779,13 +768,6 @@ static HTML_CANVAS: &str = r#"
</tr>
</table>

<div id="pipeline-container" class="canvas-container" part="canvas">
<canvas id="pipeline-graph" class="graph" style="position: absolute; left: 0; top: 0; z-index: 0;"></canvas>
<canvas id="pipeline-graph-lines" style="position: absolute; left: 0; top: 0; z-index: 1; pointer-events:none;"></canvas>
</div>
<div class="canvas-container" part="canvas">
<canvas id="timing-graph" class="graph"></canvas>
</div>
<div id="pipeline-container-svg" class="canvas-container" part="svg"></div>
<div id="timing-container-svg" class="canvas-container" part="svg"></div>
<div id="pipeline-container" class="canvas-container"></div>
<div id="timing-container" class="canvas-container"></div>
"#;
Loading