No, it doesn't. Though you can use JavaScript to get the attribute and validate it that way.
if ( ! input.hasOwnProperty('pattern')
&& ~input.value.search(input.pattern)) {
// Valid input field for browsers which don't support `pattern` attribute.
}
jsFiddle.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…