is “hyphenate-limit-lines” supported?

HTML

<p id="integer">Integer All human be­­­&shy;ings are bo­­­&shy;rn fr­­­&shy;ee and eq­­­&shy;ual in­­­&shy; dignity a­­­&shy;nd rights. They a­­­&shy;re end­­­&shy;owed with re­­­&shy;ason and consc­­­&shy;ience and ­­­&shy;should act to­­­&shy;wards one anothe­­­&shy;r in a spirit of brotherhood.</p>
<p id="no-limit">No-limit. All human be­­­&shy;ings are bo­­­&shy;rn fr­­­&shy;ee and eq­­­&shy;ual in­­­&shy; dignity a­­­&shy;nd rights. They a­­­&shy;re end­­­&shy;owed with re­­­&shy;ason and consc­­­&shy;ience and ­­­&shy;should act to­­­&shy;wards one anothe­­­&shy;r</p>

CSS

p {
    width: 17em;
    border: 1px solid red;
    text-align: justify;
    font-size: 1.25em;
    font-family: monospace;
}

#integer {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    -o-hyphens: manual;
    hyphens: manual;
    
    -webkit-hyphenate-limit-lines: 5;
    -moz-hyphenate-limit-lines: 5;
    -ms-hyphenate-limit-lines: 5;
    hyphenate-limit-lines: 5;
}