is “text-decoration-style” supported?

Includes prefixes

HTML

<p id="solid">Decoration is a solid line</p>
<p id="double">Decoration is a double line</p>
<p id="dotted">Decoration is a dotted line</p>
<p id="dashed">Decoration is a dashed line</p>
<p id="wavy">Decoration is a wavy line</p>

CSS

p {
    -webkit-text-decoration-line: line-through;
    -moz-text-decoration-line: line-through;
    -ms-text-decoration-line: line-through;
    text-decoration-line: line-through;
}
#solid {
    -webkit-text-decoration-style: solid;
    -moz-text-decoration-style: solid;
    -ms-text-decoration-style: solid;
    text-decoration-style: solid;
}
#double {
    -webkit-text-decoration-style: double;
    -moz-text-decoration-style: double;
    -ms-text-decoration-style: double;
    text-decoration-style: double;
}
#dotted {
    -webkit-text-decoration-style: dotted;
    -moz-text-decoration-style: dotted;
    -ms-text-decoration-style: dotted;
    text-decoration-style: dotted;
}
#dashed {
    -webkit-text-decoration-style: dashed;
    -moz-text-decoration-style: dashed;
    -ms-text-decoration-style: dashed;
    text-decoration-style: dashed;
}
#wavy {
    -webkit-text-decoration-style: wavy;
    -moz-text-decoration-style: wavy;
    -ms-text-decoration-style: wavy;
    text-decoration-style: wavy;
}