Skip to content

Commit

Permalink
chrome 124
Browse files Browse the repository at this point in the history
  • Loading branch information
krausest committed May 10, 2024
1 parent 3d1353e commit 9a6daad
Show file tree
Hide file tree
Showing 5 changed files with 219 additions and 212 deletions.
8 changes: 5 additions & 3 deletions webdriver-ts-results/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ const KnownIssuesList = () => {
renderItem={(issue) => (
<List.Item>
<Typography.Text className="known-issues__issue-code">
<a id={issue.number.toFixed()} href={issue.link}>{issue.number}</a>
<a id={issue.number.toFixed()} href={issue.link}>
{issue.number}
</a>
</Typography.Text>{" "}
{issue.text}
</List.Item>
Expand Down Expand Up @@ -46,8 +48,8 @@ const App = () => {

const testEnvironmentInfo = (
<p>
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.4), Chrome 123.0.6312.59 (arm64) using
the puppeteer benchmark driver with reduced tracing.
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.4), Chrome for Testing 124.0.6367.91
(arm64) using the puppeteer benchmark driver with reduced tracing.
</p>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ const BoxPlotTableChart = ({ traces }: Props) => {
options: {
animation: false,
maintainAspectRatio: false,
minStats: "min",
maxStats: "max",
coef: 0,
scales: {
x: {
type: "category",
Expand All @@ -74,7 +77,7 @@ const BoxPlotTableChart = ({ traces }: Props) => {
}, [traces]);

return (
<div style={{ height: "28rem" }}>
<div style={{ height: "250px" }}>
<canvas style={{ maxHeight: "100%" }} ref={chartRef}></canvas>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const BoxPlotTableRow = ({ frameworks, benchmark, results, currentSortKey, sortB
}));

return (
<tr key={benchmark.id} style={{ height: 400 }}>
<tr key={benchmark.id} style={{ height: 250 }}>
<th className="benchname">
<button
className={`button button__text ${currentSortKey === benchmark.id ? "sort-key" : ""}`}
Expand Down
Loading

0 comments on commit 9a6daad

Please sign in to comment.