[Webkit-unassigned] [Bug 112101] -webkit-calc in animation keyframes crashes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 11 23:43:27 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=112101





--- Comment #2 from Mike Lawther <mikelawther at chromium.org>  2013-03-11 23:45:53 PST ---
Testing with Chrome 27.0.1436.2 canary on MacOS 10.8, I do not see a crash. So I could see the test animating, I changed the given testcase to:

-----------
<style>
@-webkit-keyframes move {
  0% {
    width: -webkit-calc(50% - 100px);
  }
  100% {
    width: -webkit-calc(50% - 200px);
  }
}

#something {
  -webkit-animation: move 2s;
  background-color: blue;
}

</style>
<div id="something">hello</div>
------------
And I observed it animating as expected.

In summary:

Chrome 27.0.1436.2 canary MacOS 10.8: GOOD
Safari Version 6.0.2 (8536.26.17) MacOS 10.8: CRASH
WebKit Nightly r140374 MacOS 10.8: GOOD (tested as I had it lying around)
WebKit Nightly r145355 MacOS 10.8: GOOD

Simon - can you confirm the versions of WebKIt that you are seeing this crash on? Looks very much like this is already fixed..

-- 
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