1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-18 14:29:25 +00:00
Files
UXP/layout/reftests/css-placeholder/input/css-opacity.html
T

15 lines
298 B
HTML

<!DOCTYPE html>
<html>
<link rel='stylesheet' type='text/css' href='style.css'>
<style>
[placeholder="bar"]::-moz-placeholder,
[placeholder="foo"]::placeholder {
opacity: 0.1;
}
</style>
<body>
<input placeholder='foo'>
<input placeholder='bar'>
</body>
</html>