mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Automatic update from web-platform-tests CSS: WPTs for Positioned Layout parsing Test parsing and computed value for https://drafts.csswg.org/css-position/ - bottom left right top - position - z-index - inset-after inset-before inset-end inset-start (not currently implemented) Change-Id: I586271fe584fadb19e5683a2781c32142fd9001a Reviewed-on: https://chromium-review.googlesource.com/c/1350409 Reviewed-by: Rune Lillesveen <futhark@chromium.org> Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Cr-Commit-Position: refs/heads/master@{#611349} -- wpt-commits: 09972ca7bd566c05f4451b5dda4678e28850a563 wpt-pr: 14240
18 lines
645 B
HTML
18 lines
645 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Positioned Layout Module Level 3: parsing position with invalid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-position/#propdef-position">
|
|
<meta name="assert" content="position supports only the grammar 'static | relative | absolute | sticky | fixed'.">
|
|
<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("position", "auto");
|
|
test_invalid_value("position", "static relative");
|
|
</script>
|
|
</body>
|
|
</html>
|