[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
ojan at chromium.org
ojan at chromium.org
Wed Jan 20 22:25:17 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit e0407b2afa296095820215e1413d0675be955fad
Author: ojan at chromium.org <ojan at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Jan 15 01:52:40 2010 +0000
2010-01-14 Ojan Vafai <ojan at chromium.org>
Reviewed by Eric Seidel.
animations/change-keyframes.html failed on Tiger Bot
https://bugs.webkit.org/show_bug.cgi?id=33370
Increase tolerances. They're still testing the stated goal of the test.
* animations/change-keyframes.html:
* transitions/cancel-transition.html:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53310 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index dd86662..d45420f 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-01-14 Ojan Vafai <ojan at chromium.org>
+
+ Reviewed by Eric Seidel.
+
+ animations/change-keyframes.html failed on Tiger Bot
+ https://bugs.webkit.org/show_bug.cgi?id=33370
+
+ Increase tolerances. They're still testing the stated goal of the test.
+
+ * animations/change-keyframes.html:
+ * transitions/cancel-transition.html:
+
2010-01-14 Gustavo Noronha Silva <gns at gnome.org>
Skip new test that requires new functionality in
diff --git a/LayoutTests/animations/change-keyframes.html b/LayoutTests/animations/change-keyframes.html
index b7016d2..ca66488 100644
--- a/LayoutTests/animations/change-keyframes.html
+++ b/LayoutTests/animations/change-keyframes.html
@@ -19,8 +19,8 @@
}
@-webkit-keyframes "anim" {
from { left: 100px; }
- 40% { left: 200px; }
- 60% { left: 200px; }
+ 10% { left: 200px; }
+ 90% { left: 200px; }
to { left: 300px; }
}
</style>
@@ -56,7 +56,7 @@
keyframes.deleteRule("100%");
keyframes.insertRule("0% { top: 50px; }");
keyframes.insertRule("10% { top: 100px; }");
- keyframes.insertRule("50% { top: 100px; }");
+ keyframes.insertRule("90% { top: 100px; }");
keyframes.insertRule("100% { top: 150px; }");
document.getElementById('box').style.webkitAnimationName = "anim";
}
diff --git a/LayoutTests/transitions/cancel-transition.html b/LayoutTests/transitions/cancel-transition.html
index 83375ec..93de57f 100644
--- a/LayoutTests/transitions/cancel-transition.html
+++ b/LayoutTests/transitions/cancel-transition.html
@@ -68,7 +68,7 @@
{
var left = parseFloat(window.getComputedStyle(document.getElementById('a')).left);
result = "left:";
- if (!isEqual(left, 250, 30))
+ if (!isEqual(left, 250, 50))
result += "<span style='color:red'>FAIL(was:" + left + ", s/b:150)</span>";
else
result += "<span style='color:green'>PASS</span>";
@@ -78,7 +78,7 @@
var transform = window.getComputedStyle(document.getElementById('b')).webkitTransform;
transform = transform.split("(");
transform = transform[1].split(",");
- if (!isEqual(transform[4], 200, 30))
+ if (!isEqual(transform[4], 200, 50))
result += "<span style='color:red'>FAIL(was:" + transform[4] + ", s/b:50)</span>";
else
result += "<span style='color:green'>PASS</span>";
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list