[Webkit-unassigned] [Bug 81692] New: [chromium] timing functions are getting incorrectly applied for accelerated css transitions
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Mar 20 12:53:10 PDT 2012
https://bugs.webkit.org/show_bug.cgi?id=81692
Summary: [chromium] timing functions are getting incorrectly
applied for accelerated css transitions
Product: WebKit
Version: 528+ (Nightly build)
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: WebKit Misc.
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: vollick at chromium.org
Blocks: 79536
If you move the mouse on and off the div while it is animating (with threaded animation enabled), you will see a hiccup in the animation each time a new transition is started.
<!DOCTYPE html>
<html>
<head>
<style>
.box{
width: 200px;
height: 200px;
border: 1px solid;
-webkit-transform: translateZ(0px);
background: #f9f900;
opacity: 0.0;
-webkit-transition: opacity 2s ease-in-out;
}
.box:hover {
opacity: .8;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list