blob: 4907c8cfe6abad618a42b2b5dcfb8b5316d5dd9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<style>
input {
background-color: transparent;
}
input:first-letter {
color: white;
}
</style>
</head>
<body>
This test passes if it doesn't crash and if the Submit button does not honor the first-letter style.<br>
<input type="submit"/>
</body>
</html>
|