summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/doc_inspector_highlight_after_transition.html
blob: b2ba0b066fd2af7266b7377c3f7aa706dfb341fc (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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">

  <style>
    div {
      opacity: 0;
      height: 0;
      background: red;
      border-top: 1px solid #888;
      transition-property: height, opacity;
      transition-duration: 3000ms;
      transition-timing-function: ease-in-out, ease-in-out, linear;
    }

    div[visible] {
      opacity: 1;
      height: 200px;
    }
  </style>
</head>
<body>
  <div></div>
</body>
</html>