Title: [97420] trunk/Tools
Revision
97420
Author
t...@chromium.org
Date
2011-10-13 16:22:53 -0700 (Thu, 13 Oct 2011)

Log Message

fix regex in layout test times dashboard
https://bugs.webkit.org/show_bug.cgi?id=70059

This fixes the treemapfocus query param.

Reviewed by Ojan Vafai.

* TestResultServer/static-dashboards/treemap.html:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (97419 => 97420)


--- trunk/Tools/ChangeLog	2011-10-13 23:16:09 UTC (rev 97419)
+++ trunk/Tools/ChangeLog	2011-10-13 23:22:53 UTC (rev 97420)
@@ -1,3 +1,14 @@
+2011-10-13  Tony Chang  <t...@chromium.org>
+
+        fix regex in layout test times dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=70059
+
+        This fixes the treemapfocus query param.
+
+        Reviewed by Ojan Vafai.
+
+        * TestResultServer/static-dashboards/treemap.html:
+
 2011-10-13  Beth Dakin  <bda...@apple.com>
 
         https://bugs.webkit.org/show_bug.cgi?id=70050

Modified: trunk/Tools/TestResultServer/static-dashboards/treemap.html (97419 => 97420)


--- trunk/Tools/TestResultServer/static-dashboards/treemap.html	2011-10-13 23:16:09 UTC (rev 97419)
+++ trunk/Tools/TestResultServer/static-dashboards/treemap.html	2011-10-13 23:22:53 UTC (rev 97420)
@@ -298,7 +298,7 @@
             function() {
                 // FIXME: There's probably a simpler regexp here. Just trying to match ascii + forward-slash.
                 // e.g. LayoutTests/foo/bar.html
-                return (value.match(/^(\w+\/\w*)*/$));
+                return (value.match(/^(\w+\/\w*)*$/));
             });
         return true;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to