Title: [120264] trunk/LayoutTests
Revision
120264
Author
[email protected]
Date
2012-06-13 17:40:40 -0700 (Wed, 13 Jun 2012)

Log Message

Address some feedbacks in layout test
https://bugs.webkit.org/show_bug.cgi?id=88909

Patch by Min Qin <[email protected]> on 2012-06-13
Reviewed by Eric Carlson.

Fixed some comments in https://bugs.webkit.org/show_bug.cgi?id=88897.
Reduced the timeout to 100 ms and fixed the function definition.

* media/no-autoplay-with-user-gesture-requirement.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (120263 => 120264)


--- trunk/LayoutTests/ChangeLog	2012-06-14 00:38:00 UTC (rev 120263)
+++ trunk/LayoutTests/ChangeLog	2012-06-14 00:40:40 UTC (rev 120264)
@@ -1,3 +1,15 @@
+2012-06-13  Min Qin  <[email protected]>
+
+        Address some feedbacks in layout test
+        https://bugs.webkit.org/show_bug.cgi?id=88909
+
+        Reviewed by Eric Carlson.
+
+        Fixed some comments in https://bugs.webkit.org/show_bug.cgi?id=88897.
+        Reduced the timeout to 100 ms and fixed the function definition.
+        
+        * media/no-autoplay-with-user-gesture-requirement.html:
+
 2012-06-13  Jeffrey Pfau  <[email protected]>
 
         Padding and borders can cause integer overflow in block layouts

Modified: trunk/LayoutTests/media/no-autoplay-with-user-gesture-requirement.html (120263 => 120264)


--- trunk/LayoutTests/media/no-autoplay-with-user-gesture-requirement.html	2012-06-14 00:38:00 UTC (rev 120263)
+++ trunk/LayoutTests/media/no-autoplay-with-user-gesture-requirement.html	2012-06-14 00:40:40 UTC (rev 120264)
@@ -7,7 +7,8 @@
             if (window.internals) 
                 window.internals.settings.setMediaPlaybackRequiresUserGesture(true);
 
-            function cleanGestureRequirement() {
+            function cleanGestureRequirement()
+            {
                 if (window.internals) 
                     window.internals.settings.setMediaPlaybackRequiresUserGesture(false);
             }
@@ -27,7 +28,7 @@
 
             function canplaythrough()
             {
-                 setTimeout(testPaused, 500);
+                 setTimeout(testPaused, 100);
             }
 
             function start()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to