2012-09-30 10:42:29 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
div.flexbox {
|
|
|
|
background: lightgray;
|
|
|
|
width: 400px;
|
2013-09-11 13:12:26 +04:00
|
|
|
height: 40px;
|
2012-09-30 10:42:29 +04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
div.flexbox > * {
|
|
|
|
min-width: 350px;
|
|
|
|
outline: 1px dashed black;
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: top;
|
2012-11-07 23:28:59 +04:00
|
|
|
display: block;
|
Bug 1322780 - Part 2: Support unprefixed min-content and max-content. r=mats,emilio
Support unprefixed min-content and max-content and treat the prefixed
version as aliases for
1. width, min-width, max-width if inline-axis is horizontal, and
2. height, min-height, max-height if inline-axis is vertical, and
3. inline-size, min-inline-size, max-inline-size, and
4. flex-basis.
Besides, update the test cases to use unprefixed max-content and
min-content.
Depends on D7535
Differential Revision: https://phabricator.services.mozilla.com/D7536
--HG--
extra : moz-landing-system : lando
2018-12-18 21:47:37 +03:00
|
|
|
width: max-content;
|
2012-09-30 10:42:29 +04:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="flexbox"><input type="button"></div>
|
|
|
|
<div class="flexbox"><input type="checkbox"></div>
|
|
|
|
<div class="flexbox"><input type="file"></div>
|
|
|
|
<div class="flexbox"><input type="image"></div>
|
|
|
|
<div class="flexbox"><input type="password"></div>
|
|
|
|
<div class="flexbox"><input type="radio"></div>
|
|
|
|
<div class="flexbox"><input type="reset"></div>
|
|
|
|
<div class="flexbox"><input type="submit"></div>
|
|
|
|
<div class="flexbox"><input type="text"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|