gecko-dev/testing/web-platform/tests/css/css-sizing/button-min-width.html
Mason Freed bdcc3929c9 Bug 1551026 [wpt PR 16709] - Take min-width into account for buttons on Mac, a=testonly
Automatic update from web-platform-tests
Take min-width into account for buttons on Mac

Prior to this CL, buttons with min-width set did not honor the
minimum width, and instead were sized to fit their content. This
should now be fixed, and there is now a test to verify.

Bug: 428479
Change-Id: I717469db1a1affead5bebf5f1ad3b8f01cce0d92
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1597279
Reviewed-by: Aleks Totic <atotic@chromium.org>
Commit-Queue: Aleks Totic <atotic@chromium.org>
Auto-Submit: Mason Freed <masonfreed@chromium.org>
Cr-Commit-Position: refs/heads/master@{#658406}

--

wpt-commits: 58e170b2508141a793bf08d027230cb03639b529
wpt-pr: 16709
2019-06-05 10:29:53 +01:00

47 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>min-width: Should apply to buttons</title>
<link rel="author" title="Mason Freed" href="mailto:masonfreed@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS2/visudet.html#min-max-widths">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
.button-row {
background-color: #BBB;
display: flex;
flex-direction: row;
width: 400px;
margin-top: 8px;
}
button {
flex: 0 0 auto;
margin: 0px;
}
</style>
<div>
<p>Expected: All buttons should be 200px wide</p>
</div>
<div class="button-row">
<button style="min-width: 200px">Foo</button>
<button style="min-width: 200px">Bar</button>
</div>
<div class="button-row">
<button style="min-width: 50%">Foo</button>
<button style="min-width: 50%">Bar</button>
</div>
<div class="button-row" style="writing-mode: vertical-rl; height: 100px;flex-direction:column">
<button style="min-width: 200px">Foo</button>
<button style="min-width: 200px">Bar</button>
</div>
<div class="button-row" style="zoom:2">
<button style="min-width: 200px">Foo</button>
<button style="min-width: 200px">Bar</button>
</div>
<script>
test(() => {
let buttons = document.querySelectorAll("button");
for (let button of document.querySelectorAll("button"))
assert_equals(button.offsetWidth, 200);
}, 'min-width should force all buttons to be 200px wide');
</script>