1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44

content / test / data / accessibility / css / marker-hyphens.html [blame]

<!--
# This copies content from a web test with the same file name.
# Workaround for platform differences in hyphen inline text box names -- the
# hyphens will appear in the output as an InlineTextBox with no name.
@BLINK-DENY:name*
@BLINK-ALLOW:name='foo*
@BLINK-ALLOW:name='bar*
-->
<style>
li {
  list-style-position: inside;
  width: 0;
}
.hyphens-manual.explicit ::marker,
.hyphens-manual.inherit {
  hyphens: manual;
}
.hyphens-none.explicit ::marker,
.hyphens-none.inherit {
  hyphens: none;
}
.marker-string {
  list-style-type: "foo\AD bar";  /* \AD is a soft hyphen. */
}
.marker-content::marker {
  content: "foo\AD bar";  /* \AD is a soft hyphen. */
}
</style>
<ol class="hyphens-manual explicit">
  <li class="marker-string"></li>
  <li class="marker-content"></li>
</ol>
<ol class="hyphens-manual inherit">
  <li class="marker-string"></li>
  <li class="marker-content"></li>
</ol>
<ol class="hyphens-none explicit">
  <li class="marker-string"></li>
  <li class="marker-content"></li>
</ol>
<ol class="hyphens-none inherit">
  <li class="marker-string"></li>
  <li class="marker-content"></li>
</ol>