chromium/third_party/blink/web_tests/external/wpt/css/css-fonts/font-size-adjust-order-001-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Fonts reference</title>
<style>
  div {
    margin: 10px;
    font: 20px monospace;
    background: yellow;
    width: 10ch;
    font-size-adjust: 1.0;
  }
</style>
<body>
  <p>Test passes if both blocks render the same, and there is no red:</p>
  <div>The quick brown fox jumps over the lazy dog</div>
  <div>The quick brown fox jumps over the lazy dog</div>
</body>