2 <script src=
"../resources/testharness.js"></script>
3 <script src=
"../resources/testharnessreport.js"></script>
5 @-webkit-keyframes
"string id" {
6 from { background: green; }
7 to { background: green; }
11 -webkit-animation:
"string id" 1s forwards;
14 <div id=
"target"></div>
17 assert_equals(getComputedStyle(target
).backgroundColor
, 'rgb(0, 128, 0)');
18 }, 'Check that strings are permitted as @keyframes identifiers');