Title: [95628] trunk/LayoutTests
Revision
95628
Author
ph...@webkit.org
Date
2011-09-21 07:48:34 -0700 (Wed, 21 Sep 2011)

Log Message

Syntax error in media/audio-delete-while-step-button-clicked.html
https://bugs.webkit.org/show_bug.cgi?id=68507

Reviewed by Eric Carlson.

* media/audio-delete-while-step-button-clicked.html: Some curly
braces were missing in a try/catch statement.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (95627 => 95628)


--- trunk/LayoutTests/ChangeLog	2011-09-21 14:28:18 UTC (rev 95627)
+++ trunk/LayoutTests/ChangeLog	2011-09-21 14:48:34 UTC (rev 95628)
@@ -1,3 +1,13 @@
+2011-09-21  Philippe Normand  <pnorm...@igalia.com>
+
+        Syntax error in media/audio-delete-while-step-button-clicked.html
+        https://bugs.webkit.org/show_bug.cgi?id=68507
+
+        Reviewed by Eric Carlson.
+
+        * media/audio-delete-while-step-button-clicked.html: Some curly
+        braces were missing in a try/catch statement.
+
 2011-09-21  Chang Shu  <c...@webkit.org>
 
         [Qt] Implement KeyDown function for WebKit2 EventSender.

Modified: trunk/LayoutTests/media/audio-delete-while-step-button-clicked.html (95627 => 95628)


--- trunk/LayoutTests/media/audio-delete-while-step-button-clicked.html	2011-09-21 14:28:18 UTC (rev 95627)
+++ trunk/LayoutTests/media/audio-delete-while-step-button-clicked.html	2011-09-21 14:48:34 UTC (rev 95628)
@@ -53,10 +53,10 @@
 
                 var audio = document.getElementById('audio');
 
-                var seekCoords
-                try
+                var seekCoords;
+                try {
                     seekCoords = mediaControlsButtonCoordinates(audio, "seek-forward-button");
-                catch (exception) {
+                } catch (exception) {
                     failTest(exception.description);
                     return;
                 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to