Skip to content

Commit 9613a0c

Browse files
committed
[css-grid-1] Fix off-by-one in favor of Firefox's impl. #2261
1 parent 81df38f commit 9613a0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-grid-1/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ Limiting Large Grids</h3>
959959
Since memory is limited,
960960
UAs may clamp the possible size of the <a>implicit grid</a>
961961
to be within a UA-defined limit
962-
(which should be at least ten thousand tracks on each side of line 1),
962+
(which should accommodate lines at in the range [-10000, 10000]),
963963
dropping all lines outside that limit.
964964
If a grid item is placed outside this limit,
965965
its grid area must be <a>clamped</a> to within this limited grid.
@@ -4710,7 +4710,7 @@ Major Changes</h4>
47104710
<p>Since memory is limited,
47114711
UAs may clamp the possible size of the <a>grid</a>
47124712
to be within a UA-defined limit
4713-
<ins>(which should be at least one million tracks)</ins>,
4713+
<ins>(which should accommodate lines at in the range [-10000, 10000]),</ins>,
47144714
dropping all lines outside that limit.
47154715
If a grid item is placed outside this limit,
47164716
its grid area must be <a>clamped</a> to within this limited grid.

0 commit comments

Comments
 (0)