Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[css-grid] Migrate positioned-grid-items-crash.html to WPT #22885

Merged
merged 1 commit into from
Apr 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions css/css-grid/abspos/positioned-grid-items-crash.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<title>CSS Grid Layout Test: Positioned grid items</title>
<link rel="author" title="Manuel Rego" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid/#abspos" title="9. Absolute Positioning">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=402504">
<meta name="assert" content="Checks that positioned grid items (absolute or fixed) do not cause a crash."/>

<link rel="stylesheet" href="/css/support/grid.css">
<body>
<div class="grid">
<div style="position: absolute;"></div>
<div style="position: fixed;"></div>
</div>
</body>
</html>