gecko-dev/layout/reftests/bidi/bidi-006-j.html
Boris Chiou c35f47093e 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 18:47:37 +00:00

50 lines
1.3 KiB
HTML

<!DOCTYPE html>
<!-- Bidi reftest 006: rtl text with diacritics. This is hard to reftest
because if there is a bug it will typically be exhibited in the reference
rendering as well as in the test. The approach adopted here is to
position boxes around the edges of the character without a diacritic and
make sure that the character with the diacritic displays in the same
space, so that if the diacritic is shifted to the right or left it will
be cut off in the test rendering and be visible (in the wrong place) in
the reference rendering.
Relevant bugs:
378351 (Windows)
386573 (Mac)
387653 (Linux)
395676 (Windows)
-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<style type="text/css">
body { background: white; color: black; }
p {
font-family: sans-serif;
font-size: 36px;
margin: 0;
text-align: justify;
}
span {
display: inline-block;
width: 3em;
height: 3em;
margin-top: -2em;
vertical-align: bottom;
background: white;
}
/* borders should be covered by overhang */
p#test {
border-left: 3em solid red;
border-right: 3em solid red;
width: max-content;
width: intrinsic;
}
</style>
<body>
<p id="test">&#x5e0;&#x5b8;</p>
<p id="overhang"><span></span>&#x5e0;<span></span></p>
</body>
</html>