is “hyphenate-limit-zone” supported?

HTML

<p id="percent">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="length">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>

CSS

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

#percent {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    -o-hyphens: manual;
    hyphens: manual;
    
    -webkit-hyphenate-limit-zone: 20%;
    -moz-hyphenate-limit-zone: 20%;
    -ms-hyphenate-limit-zone: 20%;
    hyphenate-limit-zone: 20%;
}

#length {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    -o-hyphens: manual;
    hyphens: manual;
    
    -webkit-hyphenate-limit-zone: 2em;
    -moz-hyphenate-limit-zone: 2em;
    -ms-hyphenate-limit-zone: 2em;
    hyphenate-limit-zone: 2em;
}