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

content / test / data / accessibility / css / font-style.html [blame]

<!--
@BLINK-ALLOW:textStyle=*
@BLINK-ALLOW:textPosition=*
@WIN-ALLOW:font*
@WIN-DENY:font-size*
@WIN-DENY:font-family*
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:offset:*
@WIN-ALLOW:text*
@WIN-DENY:text-align*
@WIN-DENY:text-indent*
@AURALINUX-ALLOW:weight=*
@AURALINUX-ALLOW:style=*
@AURALINUX-ALLOW:underline=*
@AURALINUX-ALLOW:hypertext=*
@AURALINUX-ALLOW:offset=*
@AURALINUX-ALLOW:text-position=*
-->
<!DOCTYPE html>
<html>
  <body>
    <p>The <b>quick</b> <i>brown</i> <u>fox</u> <b><i>jumped</i></b> <i><u>over</u></i> <b><i><u>dog</u></i></b></p>
    <div contentEditable><span>Normal</span>
        <span style="font-weight: bold;">bold</span>
        <span style="font-style: italic;">italic</span>
        <span style="text-decoration: underline;">underline</span>
        <span style="text-decoration: line-through;">line-through</span>
        <span style="vertical-align: sub;">subscript</span>
        <span style="vertical-align: super;">superscript</span>
    </div>
  </body>
</html>