Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / will-change / neutral-keyframe-not-decomposed.html
blob18c61a5f393f8e6026aaa8e3038f38a4ff5249ff
1 <!DOCTYPE html>
2 <style>
3 @keyframes test {
4 to {transform: rotate(360deg);}
6 #target {
7 border-left: solid;
8 border-top: solid;
9 will-change: transform;
10 animation-name: test;
11 animation-duration: 2e10s;
12 animation-delay: -1e10s;
13 animation-timing-function: linear;
14 width: 100px;
15 height: 100px;
16 margin: 50px;
18 </style>
19 The following shape should look like: _|
20 <div id="target"></div>