mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
Automatic update from web-platform-tests CSS: Test float and clear computed values float and clear support the values defined in CSS Box Model Level 3, and CSS Logical Properties Level 1 https://drafts.csswg.org/css-box-3/#propdef-clear https://drafts.csswg.org/css-box-3/#propdef-float https://drafts.csswg.org/css-logical/#float-clear Change-Id: I3859720ec3c6dfa3444dc82d538e520076a38df0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1701630 Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org> Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Cr-Commit-Position: refs/heads/master@{#677466} -- wpt-commits: 7068e046840c8a0862be73c33970997594e42859 wpt-pr: 17829
26 lines
969 B
HTML
26 lines
969 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS basic box model: parsing clear with valid values</title>
|
|
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-box-3/#propdef-clear">
|
|
<link rel="help" href="https://drafts.csswg.org/css-logical/#float-clear">
|
|
<meta name="assert" content="clear supports the full grammar 'none | left | right | both'.">
|
|
<meta name="assert" content="clear also supports inline-start and inline-end.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_valid_value("clear", "none");
|
|
test_valid_value("clear", "left");
|
|
test_valid_value("clear", "right");
|
|
test_valid_value("clear", "both");
|
|
|
|
test_valid_value("clear", "inline-start");
|
|
test_valid_value("clear", "inline-end");
|
|
</script>
|
|
</body>
|
|
</html>
|