Skip to content

Commit d3ab786

Browse files
committed
chrome 121 results
1 parent cb584b3 commit d3ab786

File tree

5 files changed

+3775
-3818
lines changed

5 files changed

+3775
-3818
lines changed

Diff for: webdriver-ts-results/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const App = () => {
4141

4242
const testEnvironmentInfo = (
4343
<p>
44-
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.1.2), Chrome 120.0.6099.62 (arm64) using
44+
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.3), Chrome 121.0.6167.85 (arm64) using
4545
the puppeteer benchmark driver with reduced tracing.
4646
</p>
4747
);

Diff for: webdriver-ts-results/src/components/ResultTable.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import { DisplayMode, BenchmarkType, FrameworkType, CpuDurationMode } from "../Common";
33
import CpuResultsTable from "./tables/CpuResultsTable";
44
import MemResultsTable from "./tables/MemResultsTable";
5-
import StartupResultsTable from "./tables/StartupResultsTable";
5+
// import StartupResultsTable from "./tables/StartupResultsTable";
66
import { benchmarks } from "../results";
77
import { useRootStore } from "../reducer";
88
import SizeResultsTable from "./tables/SizeResultsTable";
@@ -79,7 +79,6 @@ const ResultTable = ({ type }: Props) => {
7979
<div className="results__table-container">
8080
<table className="results__table">
8181
<CpuResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
82-
<StartupResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
8382
<MemResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
8483
<SizeResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
8584
</table>

Diff for: webdriver-ts-results/src/components/tables/SizeResultsTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const SizeResultsTable = ({ data, currentSortKey, sortBy }: Props) => {
2222
<thead>
2323
<tr>
2424
<td className="description">
25-
<h3>Transferred Size (in kBs) [Experimental, please post <a href="https://github.com/krausest/js-framework-benchmark/issues/1340#issuecomment-1793802128">feedback</a>]</h3>
25+
<h3>Transferred size (in kBs) and first paint</h3>
2626
</td>
2727
</tr>
2828
</thead>

0 commit comments

Comments
 (0)