summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/widgets/appearance/appearance-animation-001.html
blob: 7d7474e0a4b93266010004246d08fa0a05314c93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset="utf-8">
<title>compute the kind of widget: author origin and animation origin</title>
<link rel="match" href="appearance-transition-001-ref.html">
<style>
  input {
    background-color: rgb(0, 0, 0);
  }
  .bg200 {
    animation: 1e10s steps(2, start) animate-bg;
  }
  @keyframes animate-bg {
    to {
      background-color: rgb(0, 200, 0);
    }
  }
</style>
<input value="text" id=input>
<script>
  document.documentElement.offsetTop;
  input.classList.toggle('bg200');
</script>
<p>PASS if the input field has a dark green background</p>