wpt / css / css-text / hyphens / hyphens-none-012.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-text/hyphens/hyphens-none-012.html

<!DOCTYPE html>

  <meta charset="UTF-8">

  <title>CSS Text: 'hyphens: none', hyphen-minus character and line wrapping</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
  <link rel="help" href="https://www.w3.org/TR/css-text-3/#hyphenation">
  <link rel="match" href="reference/hyphens-auto-010M-ref.html">

  <meta content="This test checks that 'hyphens: none' does not suppress line wrapping after encountering an actual hyphen-minus character (U+002D).">

  <style>
  div
    {
      border: black solid 2px;
      font-family: monospace;
      font-size: 32px;
      hyphens: none;
      width: 6ch;
    }
  </style>

  <div>regu&#x002D;lation imple&#x002D;menta&#x002D;tion now</div>

  <!--
        Expected result:
        regu-
        lation
        imple-
        menta-
        tion
  -->

/css/css-text/hyphens/reference/hyphens-auto-010M-ref.html

<!DOCTYPE html>

  <meta charset="UTF-8">

  <title>CSS Reference Test</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">

  <style>
  div
    {
      border: black solid 2px;
      font-family: monospace;
      font-size: 32px;
      width: 6ch;
    }
  </style>

 <body lang="en">

  <div>regu&#x002D;<br>lation<br>imple&#x002D;<br>menta&#x002D;<br>tion<br>now</div>

<!--

  Hyphen-minus == &#x002D; == &#0045;

  Hyphen == &#x2010; == &#8208;

-->