Skip to content

Commit

Permalink
Bug 1690707 [wpt PR 27470] - [GridNG] Change IsLayoutGrid to IsLayout…
Browse files Browse the repository at this point in the history
…GridIncludingNG, a=testonly

Automatic update from web-platform-tests
[GridNG] Change IsLayoutGrid to IsLayoutGridIncludingNG

As above. This fixes a bunch of small issues. Some of the branches
are relatively difficult to reach due to layout ng being so prevalent,
but commented on the ones which clearly have associated tests.

Added a bunch of TODOs for behaviour which needs to be implemented.
Specifically:
 - devtools information.
 - computed-style grid-template-*, etc.
 - abspos invalidation.

Bug: 1045599
Change-Id: I0c4a7aae3381e49bf2e7e3bc80247c8c8dccc73f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2674359
Commit-Queue: Ian Kilpatrick <[email protected]>
Reviewed-by: Morten Stenshorne <[email protected]>
Cr-Commit-Position: refs/heads/master@{#850751}

--

wpt-commits: 9378cebe0d791f016d1b0ecca105e10941d7a34f
wpt-pr: 27470
  • Loading branch information
bfgeek authored and moz-wptsync-bot committed Feb 9, 2021
1 parent 9d66e38 commit f9d8af7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!-- quirks mode -->
<link rel="match" href="../../quirks/reference/green-100px-square-no-red.html">
<link rel="help" href="https://quirks.spec.whatwg.org/#the-percentage-height-calculation-quirk">
<p>There should be a filled green square below, and no red.</p>
<div style="width: 100px; height: 100px; overflow: hidden; background: green;">
<div style="display: grid; position: relative; left: -20px;">
<canvas width=10 height=10 style="height: 200%; background: red;"></canvas>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!-- quirks mode -->
<link rel="match" href="../../quirks/reference/green-100px-square-no-red.html">
<link rel="help" href="https://quirks.spec.whatwg.org/#the-percentage-height-calculation-quirk">
<p>There should be a filled green square below, and no red.</p>
<div style="width: 100px; height: 100px; overflow: hidden; background: green;">
<div style="display: grid; position: relative; left: -20px;">
<div width=10 height=10 style="height: 200%; width: 200px; background: red;"></div>
</div>
</div>

0 comments on commit f9d8af7

Please sign in to comment.