From 3d2a5cff012b2ede3d307435178de97c92b14a05 Mon Sep 17 00:00:00 2001 From: Henrik Hjelte Date: Fri, 30 Aug 2013 15:28:40 +0100 Subject: [PATCH] Testcase for transition of transform (Affects Webkit) --- test/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/index.html b/test/index.html index 5b9c893..ac4a924 100644 --- a/test/index.html +++ b/test/index.html @@ -158,6 +158,12 @@

jQuery transit tests

.transition({ opacity: 0 }); }); + test('Transition of transform (no jump first time)', function($box) { + $box + .transition({ transform: "translateX(80px)" }); + }); + +