diff --git a/.github/workflows/run-wpt.yml b/.github/workflows/run-wpt.yml index 2c751f0..f561a96 100644 --- a/.github/workflows/run-wpt.yml +++ b/.github/workflows/run-wpt.yml @@ -46,10 +46,6 @@ jobs: echo Downloaded $SERVO_VERSION echo "SERVO_VERSION=$SERVO_VERSION" >> $GITHUB_ENV working-directory: servo - - name: Layout argument - if: inputs.layout-engine == '2013' - run: | - echo "WPT_LAYOUT_FLAG=--legacy-layout" >> $GITHUB_ENV - name: Run tests run: | python3 ./mach test-wpt \ diff --git a/site/index.html b/site/index.html index 63c58a6..8a03e9f 100644 --- a/site/index.html +++ b/site/index.html @@ -29,7 +29,7 @@ #selected-area { padding: 10px; } - + #selected-period { padding: 10px; } @@ -58,15 +58,6 @@ #score-table-body .score { text-align: right; } - - label[for="show-legacy"] { - font-size: 0.6em; - } - - #show-legacy-div { - text-align: center; - vertical-align: center; - }
diff --git a/site/load-chart.js b/site/load-chart.js index f4c4c44..83ceb65 100644 --- a/site/load-chart.js +++ b/site/load-chart.js @@ -131,7 +131,7 @@ function setupChart () { table.addColumn('date', 'runOn') options.series.push({ color: '#3366CC' }) - table.addColumn('number', 'Servo Layout') + table.addColumn('number', 'Servo') table.addColumn({ type: 'string', role: 'tooltip', p: { html: true } }) for (const scores_for_run of all_scores.scores) { @@ -144,7 +144,7 @@ function setupChart () { const row = [ date, area_score / 1000, - toolTip(date, wpt_sha, browser_version, area_score, 'Servo Layout') + toolTip(date, wpt_sha, browser_version, area_score, 'Servo') ] table.addRow(row) } @@ -167,7 +167,7 @@ function setupChart () { 'beforeend', `