mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
Automatic update from web-platform-testsMerge pull request #11781 from ewilligers/grid-parsing-longhands [css-grid] Parse various grid properties -- wpt-commits: beeef7243be816e41f7322528d0ec4571d0264da wpt-pr: 11781
21 lines
827 B
HTML
21 lines
827 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Display: parsing display with invalid values</title>
|
|
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#display-prop">
|
|
<link rel="help" href="https://drafts.csswg.org/css-display/#the-display-properties">
|
|
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-containers">
|
|
<meta name="assert" content="display supports only the spec grammar.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_invalid_value("display", "grid inline-grid");
|
|
test_invalid_value("display", "none grid");
|
|
</script>
|
|
</body>
|
|
</html>
|