summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-invalid/select/style.css
blob: 5461c6dfb461dbbae277767f9e07856e26bb461c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Override default style */
select:invalid {
  box-shadow: none;
}

select.notinvalid {
  background-color: green;
}
select.notinvalid:invalid {
  background-color: red;
}

select.invalid {
  background-color: red;
}
select.invalid:invalid {
  background-color: green;
}