Title: [127357] trunk/LayoutTests
Revision
127357
Author
[email protected]
Date
2012-08-31 21:31:45 -0700 (Fri, 31 Aug 2012)

Log Message

Fix 6 broken SVG animation tests

Unreviewed test update.

Six SVG animation tests were marked as TIMEOUT because they never ran. Each
of these tests required a click event to start and the event was not being fired.
This patch updates these tests to correctly start, fixing 6 TIMEOUTS.

* platform/chromium/TestExpectations:
* svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js:
* svg/animations/script-tests/animate-path-nested-transforms.js:
* svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js:
* svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js:
* svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js:
* svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (127356 => 127357)


--- trunk/LayoutTests/ChangeLog	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/ChangeLog	2012-09-01 04:31:45 UTC (rev 127357)
@@ -1,3 +1,21 @@
+2012-08-31  Philip Rogers  <[email protected]>
+
+        Fix 6 broken SVG animation tests
+
+        Unreviewed test update.
+
+        Six SVG animation tests were marked as TIMEOUT because they never ran. Each
+        of these tests required a click event to start and the event was not being fired.
+        This patch updates these tests to correctly start, fixing 6 TIMEOUTS.
+
+        * platform/chromium/TestExpectations:
+        * svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js:
+        * svg/animations/script-tests/animate-path-nested-transforms.js:
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js:
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js:
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js:
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js:
+
 2012-08-31  Kent Tamura  <[email protected]>
 
         [Chromium] Unreviewed, test expectation update

Modified: trunk/LayoutTests/platform/chromium/TestExpectations (127356 => 127357)


--- trunk/LayoutTests/platform/chromium/TestExpectations	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/platform/chromium/TestExpectations	2012-09-01 04:31:45 UTC (rev 127357)
@@ -3255,14 +3255,6 @@
 BUGWK86909 WIN DEBUG : platform/chromium/virtual/gpu/fast/canvas/imagedata-contains-uint8clampedarray.html = PASS TIMEOUT
 BUGWK86909 WIN SLOW : platform/chromium/virtual/gpu/fast/canvas/webgl/webgl-composite-modes-repaint.html = PASS
 
-// Animation tests timing out since r117815
-BUGWK87075 : svg/animations/svgnumberoptionalnumber-animation-1.html = PASS TIMEOUT
-BUGWK87075 : svg/animations/animate-path-nested-transforms.html = PASS TIMEOUT
-BUGWK87075 : svg/animations/svgnumberoptionalnumber-animation-2.html = PASS TIMEOUT
-BUGWK87075 : svg/animations/svgnumberoptionalnumber-animation-3.html = PASS TIMEOUT
-BUGWK87075 : svg/animations/animate-path-animation-qQ-tT-inverse.html = PASS TIMEOUT
-BUGWK87075 : svg/animations/svgnumberoptionalnumber-animation-4.html = PASS TIMEOUT
-
 // Ref-tests can't have platform specific results.
 BUGWK87175 SKIP : fast/regions/floats-basic-in-variable-width-regions.html = PASS
 BUGWK87175 SKIP : fast/regions/overflow-in-uniform-regions.html = PASS

Modified: trunk/LayoutTests/svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js (127356 => 127357)


--- trunk/LayoutTests/svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js	2012-09-01 04:31:45 UTC (rev 127357)
@@ -118,4 +118,6 @@
     runAnimationTest(expectedValues);
 }
 
+window.clickX = 40;
+window.clickY = 70;
 var successfullyParsed = true;

Modified: trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js (127356 => 127357)


--- trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js	2012-09-01 04:31:45 UTC (rev 127357)
@@ -45,5 +45,5 @@
 }
 
 window.clickX = 310;
-window.clickY = 30;
+window.clickY = 40;
 var successfullyParsed = true;

Modified: trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js (127356 => 127357)


--- trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js	2012-09-01 04:31:45 UTC (rev 127357)
@@ -75,4 +75,6 @@
     runAnimationTest(expectedValues);
 }
 
+window.clickX = 100;
+window.clickY = 100;
 var successfullyParsed = true;

Modified: trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js (127356 => 127357)


--- trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js	2012-09-01 04:31:45 UTC (rev 127357)
@@ -75,4 +75,6 @@
     runAnimationTest(expectedValues);
 }
 
+window.clickX = 60;
+window.clickY = 60;
 var successfullyParsed = true;

Modified: trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js (127356 => 127357)


--- trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js	2012-09-01 04:31:45 UTC (rev 127357)
@@ -75,4 +75,6 @@
     runAnimationTest(expectedValues);
 }
 
+window.clickX = 60;
+window.clickY = 60;
 var successfullyParsed = true;

Modified: trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js (127356 => 127357)


--- trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js	2012-09-01 04:24:04 UTC (rev 127356)
+++ trunk/LayoutTests/svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js	2012-09-01 04:31:45 UTC (rev 127357)
@@ -75,4 +75,6 @@
     runAnimationTest(expectedValues);
 }
 
+window.clickX = 60;
+window.clickY = 60;
 var successfullyParsed = true;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to