| Tests the intrinsic width keywords defined in the writing mode spec by |
| setting up a bunch of boxes with content and a wrapper that has a small |
| Visually there should be a min-content, fit-content, and float box that are |
| identical widths, a fill-available box that's constrained by the #container, |
| and a max-content box that has text all on one line. All boxes except |
| fill-available should overflow the #container. |
| @import "resources/width-keyword-classes.css"; |
| <div class="min-content"> |
| <span>Min Content</span> on this box. |
| <div class="max-content"> |
| <span>Max Content</span> on this box. |
| <span>Float</span> on this box. |
| <div class="fill-available"> |
| <span>Fill Available</span> on this box. |
| <div class="fit-content"> |
| <span>Fit Content</span> on this box. |