summaryrefslogtreecommitdiff
path: root/testsuite/reftests/border-color-default.css
blob: e29978a27053f0f0291e5906d94f224ef8e7a35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
* {
  border-image: none;
  border-style: solid;
  border-width: 5px;
}

button {
  /* using a nonexistent color because that will lead to the default value */
  border-color: @doesnotexist;
  color: purple;
}

#reference {
  border-color: purple;
  color: purple;
}