mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
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
22 lines
392 B
HTML
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>
|