gecko-dev/testing/web-platform/tests/css/css-flexbox/reference/align-baseline-ref.html
Gyuyoung Kim 62ca812b60 Bug 1624262 [wpt PR 22386] - [WPT migration] Move align-baseline.html test from css3/flexbox to WPT, a=testonly
Automatic update from web-platform-tests
[WPT migration] Move align-baseline.html test from css3/flexbox to WPT

align-baseline.html can be migrated to WPT because it doesn't use
Blink internal APIs as well as doesn't have an image baseline. Besides,
the spec exists.

Bug: 1063749
Change-Id: I99706d7929bc572d6fbc4b9ec0d217d7feca920d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2114477
Reviewed-by: David Grogan <dgrogan@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Reviewed-by: Robert Ma <robertma@chromium.org>
Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com>
Cr-Commit-Position: refs/heads/master@{#752688}

--

wpt-commits: 275e93967cf2b827aa1805cd5b983a6b4a9cb79b
wpt-pr: 22386
2020-03-31 11:30:39 +00:00

22 lines
392 B
HTML

<!DOCTYPE html>
<html>
<link href="../support/flexbox.css" rel="stylesheet">
<style>
body {
margin: 0;
}
</style>
<body>
<div class='flexbox column align-items-flex-start'>
<h1>This text</h1>
<p>should be left aligned.</p>
</div>
<div class='flexbox column align-items-flex-start wrap-reverse'>
<h1>This text</h1>
<p>should be right aligned.</p>
</div>
</body>
</html>