blob: 7a3dd1d50d528bcb1de2f49ce7d80b5f177a4b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Select rendering invalidation</title>
<link rel="author" href="mailto:masonf@chromium.org">
<style>
select {
color: lime;
}
</style>
<select id=select>
<option>The down arrow should be green</option>
<option>value B</option>
</select>
|