Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-intrinsic-dimensions / min-width.html
blob01f98d4d6ede392eeb34f841401d8edd74028c11
1 <!doctype html>
2 <!--
3 Tests the behavior of the intrinsic width keywords when applied to min-width
4 by placing them inside a constrained container. This test passes if it looks
5 identical to the width.html test since all min's should be larger than the
6 #container and should overflow.
7 -->
8 <style>
9 @import "resources/width-keyword-classes.css";
11 body * {
12 border: 5px solid red;
13 padding: 5px;
16 span {
17 display: inline-block;
18 width: 200px;
19 border-color: green;
22 #container {
23 width: 150px;
25 </style>
27 <div id="container">
29 <div class="min-width-min-content">
30 <span>Min Content</span> on this box.
31 </div>
33 <div class="min-width-max-content">
34 <span>Max Content</span> on this box.
35 </div>
37 <div class="min-width-fill-available">
38 <span>Fill Available</span> on this box.
39 </div>
41 <div class="min-width-fit-content">
42 <span>Fit Content</span> on this box.
43 </div>
45 </div>