Title: [145694] trunk/LayoutTests
Revision
145694
Author
ch.du...@sisa.samsung.com
Date
2013-03-13 02:26:39 -0700 (Wed, 13 Mar 2013)

Log Message

[EFL] http/tests/websocket/tests/hybi/close-on-navigate-new-location.html is failing
https://bugs.webkit.org/show_bug.cgi?id=112231

Reviewed by Kentaro Hara.

close-on-navigate-new-location.html tests that the websocket is closed when navigating
to a new location (handler_map.txt). However, handler_map.txt does not exist so we get
an HTTP 404 error and we end up not navigating. This patch fixes the navigation path
to "../handler_map.txt" since the file is actually in the parent folder.

* http/tests/websocket/tests/hybi/close-on-navigate-new-location.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (145693 => 145694)


--- trunk/LayoutTests/ChangeLog	2013-03-13 09:15:22 UTC (rev 145693)
+++ trunk/LayoutTests/ChangeLog	2013-03-13 09:26:39 UTC (rev 145694)
@@ -1,3 +1,17 @@
+2013-03-13  Christophe Dumez  <ch.du...@sisa.samsung.com>
+
+        [EFL] http/tests/websocket/tests/hybi/close-on-navigate-new-location.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=112231
+
+        Reviewed by Kentaro Hara.
+
+        close-on-navigate-new-location.html tests that the websocket is closed when navigating
+        to a new location (handler_map.txt). However, handler_map.txt does not exist so we get
+        an HTTP 404 error and we end up not navigating. This patch fixes the navigation path
+        to "../handler_map.txt" since the file is actually in the parent folder.
+
+        * http/tests/websocket/tests/hybi/close-on-navigate-new-location.html:
+
 2013-03-13  Mike West  <mk...@chromium.org>
 
         Unsafe _javascript_ attempt errors are ludicrously verbose and annoying

Modified: trunk/LayoutTests/http/tests/websocket/tests/hybi/close-on-navigate-new-location.html (145693 => 145694)


--- trunk/LayoutTests/http/tests/websocket/tests/hybi/close-on-navigate-new-location.html	2013-03-13 09:15:22 UTC (rev 145693)
+++ trunk/LayoutTests/http/tests/websocket/tests/hybi/close-on-navigate-new-location.html	2013-03-13 09:26:39 UTC (rev 145694)
@@ -37,7 +37,7 @@
 document.iframeReady = function()
 {
     debug("PASS 'socket1' is sent to the server. navigate to new location. expect receiving 'socket1' on ws...");
-    frameDiv.src = ""
+    frameDiv.src = ""
 };
 
 </script>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to