Syntax error in media/audio-delete-while-step-button-clicked.html
authorphiln@webkit.org <philn@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 14:48:34 +0000 (14:48 +0000)
committerphiln@webkit.org <philn@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 14:48:34 +0000 (14:48 +0000)
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95628 268f45cc-cd09-0410-ab3c-d52691b4dbfc

LayoutTests/ChangeLog
LayoutTests/media/audio-delete-while-step-button-clicked.html

index 6b74611..e0fa198 100644 (file)
@@ -1,3 +1,13 @@
+2011-09-21  Philippe Normand  <pnormand@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  <cshu@webkit.org>
 
         [Qt] Implement KeyDown function for WebKit2 EventSender.
index 8092282..004c957 100644 (file)
 
                 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;
                 }