Mypal/layout/reftests/css-placeholder/ignore-pseudo-class.html

16 lines
218 B
HTML
Raw Normal View History

2019-03-11 03:26:37 -07:00
<!DOCTYPE html>
<html>
<style>
:-moz-placeholder {
color: red;
}
:placeholder {
color: red;
}
</style>
<body>
<input placeholder='foobar'>
<textarea placeholder='foobar'></textarea>
</body>
</html>