Skip to content

Commit

Permalink
Bug 1837643 [wpt PR 40475] - [RemoveLegacy] GridTrackList::legacy_tra…
Browse files Browse the repository at this point in the history
…ck_list_, a=testonly

Automatic update from web-platform-tests
[RemoveLegacy] GridTrackList::legacy_track_list_

This wasn't used anymore. This fixes an OOM we had which trying
parse many repeated tracks.

There should be no behaviour change.

Bug: 1229581
Fixed: 1350760
Fixed: 1214890
Change-Id: I0e3463018473689c6d9274907e4c024a6dc14a5a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4599018
Commit-Queue: Ian Kilpatrick <[email protected]>
Reviewed-by: Alison Maher <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1155596}

--

wpt-commits: d323512bb2ac0204659295a575169562b3799a11
wpt-pr: 40475
  • Loading branch information
bfgeek authored and moz-wptsync-bot committed Jun 21, 2023
1 parent 1ba8dd3 commit c32285a
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1214890">
<body></body>
<script>
let value = '';
for (let i = 0; i < 100000; ++i) {
value += ` repeat(1000, ${i}px)`;
}
document.body.style.gridTemplateColumns = value;
document.body.textContent = 'PASS';
</script>

0 comments on commit c32285a

Please sign in to comment.