summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/animation/test/doc_special_colors.html
blob: 2c71b2c963caa052bb358f07c3305aa237267423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <style>
    div {
      animation: anim 5s infinite;
      border: 1px solid lime;
      height: 100px;
      width: 100px;
    }

    @keyframes anim {
      from {
		    caret-color: auto;
		    scrollbar-color: lime red;
      }
	    to {
		    caret-color: lime;
		    scrollbar-color: auto;
	    }
    }
    </style>
  </head>
  <body>
    <div></div>
  </body>
</html>