Bug 1627709 [wpt PR 22725] - Revert "[css-flexbox] Move flex-flow-auto-margins-no-available-space-assert.html test to WPT", a=testonly

Automatic update from web-platform-tests
Revert "[css-flexbox] Move flex-flow-auto-margins-no-available-space-assert.html test to WPT"

This reverts commit 1c57822755f1d96d7b4fbb4ddc374bd7d0c5543c.

Reason for revert: The original test has a Chrome specific's expected height value. It can't be moved to WPT now.

Original change's description:
> [css-flexbox] Move flex-flow-auto-margins-no-available-space-assert.html test to WPT
>
> This CL moves flex-flow-auto-margins-no-available-space-assert.html
> test from css3/css-flexbox to external/wpt/css/css-flexbox with WPT
> styles, adding links to the relevant specs, and test description.
>
> Bug: 1063749
> Change-Id: I6775022c3fc8572f78e7ec19ad88b91dfdcb7a23
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2120665
> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com>
> Reviewed-by: Robert Ma <robertma@chromium.org>
> Reviewed-by: David Grogan <dgrogan@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#753900}

TBR=dgrogan@chromium.org,robertma@chromium.org,gyuyoung@igalia.com

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: 1063749
Change-Id: I89037ea337838cd458917f708cd934e780ed126a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2137166
Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com>
Reviewed-by: Gyuyoung Kim <gyuyoung@igalia.com>
Cr-Commit-Position: refs/heads/master@{#756651}

--

wpt-commits: d7230409018f6753f0ba95406968827bfdbf0417
wpt-pr: 22725
This commit is contained in:
Gyuyoung Kim 2020-04-07 10:00:41 +00:00 коммит произвёл moz-wptsync-bot
Родитель f699417091
Коммит 917e737314
1 изменённых файлов: 0 добавлений и 25 удалений

Просмотреть файл

@ -1,25 +0,0 @@
<!DOCTYPE html>
<title>CSS Flexbox: flex-flow auto margin with no available space</title>
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#flex-shrink-property">
<link rel="help" href="https://crbug.com/380201">
<meta name="assert" content="This test checks that a flexbox doesn't shrink below border/padding
when stretching children with no available space.">
<style>
* {
display: flex;
padding-bottom: 20pt;
min-height: 0.7%;
margin-top: 6000%;
flex-shrink: 0;
flex-basis: 7000%;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<abbr data-expected-height=30210272>
<input></input>
</abbr>
<script>
window.checkLayout('abbr');
</script>