Skip to content

Commit

Permalink
Merge pull request #38 from servo/remove-legacy-stuff
Browse files Browse the repository at this point in the history
Remove last bits of legacy layout and rename "Servo Layout" to "Servo"
  • Loading branch information
mukilan authored Nov 22, 2024
2 parents 9469683 + 8a69d02 commit 195286f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 17 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/run-wpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
11 changes: 1 addition & 10 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#selected-area {
padding: 10px;
}

#selected-period {
padding: 10px;
}
Expand Down Expand Up @@ -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;
}
</style>
</head>
<body>
Expand Down
6 changes: 3 additions & 3 deletions site/load-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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)
}
Expand All @@ -167,7 +167,7 @@ function setupChart () {
'beforeend',
`<tr>
<th>Test Suite</th>
<th>Servo Layout</th>
<th>Servo</th>
</tr>`
)

Expand Down

0 comments on commit 195286f

Please sign in to comment.