WebKit Bugzilla
Attachment 341648 Details for
Bug 186129
: REGRESSION (r232186): Hardware-accelerated CSS animations using steps() timing function no longer work
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Testcase
css-animation-steps.html (text/html), 920 bytes, created by
Frédéric Wang (:fredw)
on 2018-05-31 01:15:54 PDT
(
hide
)
Description:
Testcase
Filename:
MIME Type:
Creator:
Frédéric Wang (:fredw)
Created:
2018-05-31 01:15:54 PDT
Size:
920 bytes
patch
obsolete
><!DOCTYPE html> ><html> > <head> > <meta charset="utf-8"> > <title>animation steps timing function</title> > <link rel="match" href="set-animation-play-state-to-paused-001-ref.html"> > <style> > #container { > position: absolute; > left: 0; > top: 3em; > } > #squareLinear, #squareSteps { > width: 100px; > height: 100px; > background: blue; > position: absolute; > left: -50px; > } > #squareLinear { > top: 0px; > animation: move 1s linear infinite; > } > #squareSteps { > top: 150px; > animation: move 1s steps(4) infinite; > } > @keyframes move > { > 100% { > transform: translate(500px); > } > } > </style> > </head> > <body onload="runTest()"> > <div id="container"> > <div id="squareLinear"></div> > <div id="squareSteps"></div> > </div> > </body> ></html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>animation steps timing function</title> <link rel="match" href="set-animation-play-state-to-paused-001-ref.html"> <style> #container { position: absolute; left: 0; top: 3em; } #squareLinear, #squareSteps { width: 100px; height: 100px; background: blue; position: absolute; left: -50px; } #squareLinear { top: 0px; animation: move 1s linear infinite; } #squareSteps { top: 150px; animation: move 1s steps(4) infinite; } @keyframes move { 100% { transform: translate(500px); } } </style> </head> <body onload="runTest()"> <div id="container"> <div id="squareLinear"></div> <div id="squareSteps"></div> </div> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 186129
:
341648
|
341744
|
342943
|
344178
|
344186