Commit 86f0bde1 authored by Antonio Gomes's avatar Antonio Gomes Committed by Commit Bot

[css-grid] Migrate anonymous-grid-items.html to WPT

BUG=767015, 1063749
R=rego@igalia.com

Change-Id: I9c5a1fef63bb2756e1c3ec28b1535c71db2e70fc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2147557
Commit-Queue: Antonio Gomes <tonikitoo@igalia.com>
Reviewed-by: default avatarManuel Rego <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#758824}
parent d6e67fe0
<!DOCTYPE html>
<html>
<title>CSS Grid: anonynous grid items.</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-items">
<link rel="match" href="reference/anonymous-grid-items-001-ref.html">
<meta name="assert" content="This test ensures that anonymous grid items are supported."/>
<body>
<div>The test passes if it has the same output than the reference.</div>
<div style="display: grid;">
anonymous item
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<div>The test passes if it has the same output than the reference.</div>
<div>
<div>anonymous item</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<div>Checks that anonymous grid items are supported. This should not crash.</div>
<div style="display: grid;">
<div>anonymous item</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<div>Checks that anonymous grid items are supported. This should not crash.</div>
<div style="display: grid;">
anonymous item
</div>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment