forked from mirrors/gecko-dev
Automatic update from web-platform-tests[css-logical] Implement flow-relative values for 'float', 'clear' and 'resize' properties They are implemented behind the CSSLogical runtime flag. Intent to Implement: https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/48OwfwZrbvI/A1XZFGkzAwAJ Spec: https://drafts.csswg.org/css-logical/#directional-keywords BUG=850004 TEST=external/wpt/css/css-logical/logical-values-float-clear.html TEST=external/wpt/css/css-logical/logical-values-resize.html The tests still have some failures because sideways writing modes have not been implemented yet (http://crbug.com/680331). Change-Id: Ieede2703368a44f3ce9996e917857226795ebaea Reviewed-on: https://chromium-review.googlesource.com/1163667 Reviewed-by: Anders Ruud <andruud@chromium.org> Reviewed-by: Yoav Weiss <yoav@yoav.ws> Commit-Queue: Oriol Brufau <obrufau@igalia.com> Cr-Commit-Position: refs/heads/master@{#581904} -- wpt-commits: 9f51afc215d4f882a7ae069494ed37ea2c9503b1 wpt-pr: 12326
17 lines
798 B
HTML
17 lines
798 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8" />
|
|
<title>CSS Logical Properties: Flow-Relative Sizing</title>
|
|
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
|
|
<link rel="help" href="https://drafts.csswg.org/css-logical/#dimension-properties">
|
|
<meta name="assert" content="This test checks the interaction of the flow-relative sizing properties with the physical ones in different writing modes." />
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
|
|
<div id="log"></div>
|
|
|
|
<script type="module">
|
|
import {runTests, createSizingPropertyGroup} from "./resources/test-box-properties.js";
|
|
runTests(createSizingPropertyGroup(""));
|
|
runTests(createSizingPropertyGroup("max-"));
|
|
runTests(createSizingPropertyGroup("min-"));
|
|
</script>
|