Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html

Issue 1318273003: Prevent will-change:transform from changing the computed value of transform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 @keyframes test {
4 to {transform: rotate(360deg);}
5 }
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;
17 }
18 </style>
19 Th following shape should look like: _|
20 <div id="target"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698