Skip to content

Commit 09981e7

Browse files
committed
Detab some files
Convert some tabs that I added by mistake to spaces.
1 parent 135a092 commit 09981e7

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

MotionMark/resources/debug-runner/graph.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,11 @@ Utilities.extendObject(window.benchmarkController, {
161161
const axisHeight = size.height - margins.top - margins.bottom;
162162

163163
// The y axis is frameLength in ms, inverted with the axis labels showing fps.
164-
const minFrameRate = this._targetFrameRate / 4;
165-
const maxFrameRate = this._targetFrameRate * 1.5;
164+
const minFrameRate = this._targetFrameRate / 4;
165+
const maxFrameRate = this._targetFrameRate * 1.5;
166166

167-
const yMin = msPerSecond / minFrameRate;
168-
const yMax = msPerSecond / maxFrameRate;
167+
const yMin = msPerSecond / minFrameRate;
168+
const yMax = msPerSecond / maxFrameRate;
169169

170170
var xScale = d3.scale.linear()
171171
.range([0, axisWidth])
@@ -236,7 +236,7 @@ Utilities.extendObject(window.benchmarkController, {
236236
.data(data[Strings.json.complexity])
237237
.enter();
238238

239-
group.append("line")
239+
group.append("line")
240240
.attr("x1", function(d) { return xScale(d.complexity) - 3; })
241241
.attr("x2", function(d) { return xScale(d.complexity) + 3; })
242242
.attr("y1", function(d) { return yScale(d.frameLength) - 3; })
@@ -336,8 +336,8 @@ Utilities.extendObject(window.benchmarkController, {
336336

337337
const minFrameRate = this._targetFrameRate / 2;
338338
const maxFrameRate = this._targetFrameRate * 1.5;
339-
const yRightMin = msPerSecond / minFrameRate;
340-
const yRightMax = msPerSecond / maxFrameRate;
339+
const yRightMin = msPerSecond / minFrameRate;
340+
const yRightMax = msPerSecond / maxFrameRate;
341341

342342
var yRight = d3.scale.linear()
343343
.range([axisHeight, graphTop])

MotionMark/resources/debug-runner/motionmark.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -623,28 +623,28 @@ body.showing-test-container.tiles-classic {
623623
/* -------------------------------------------------------------------------- */
624624

625625
body.showing-test-graph {
626-
height: 100vh;
626+
height: 100vh;
627627
}
628628

629629
body.showing-test-graph main, #test-graph {
630-
height: 100%;
630+
height: 100%;
631631
}
632632

633633
body.showing-test-graph header, body.showing-test-graph nav {
634-
flex-basis: auto;
634+
flex-basis: auto;
635635
}
636636

637637
#test-graph .body {
638-
display: flex;
639-
flex-direction: column;
640-
margin-trim: block-start;
641-
margin: 1em;
642-
height: calc(100% - 2em);
638+
display: flex;
639+
flex-direction: column;
640+
margin-trim: block-start;
641+
margin: 1em;
642+
height: calc(100% - 2em);
643643
}
644644

645645
#test-graph-data {
646-
flex-grow: 1;
647-
min-height: 0;
646+
flex-grow: 1;
647+
min-height: 0;
648648
z-index: 1;
649649
font: 10px sans-serif;
650650
color: rgb(235, 235, 235);

0 commit comments

Comments
 (0)