[Dashboard] Only accept the 'group' parameter if present in the layout tests builders group
https://bugs.webkit.org/show_bug.cgi?id=114799

Reviewed by Benjamin Poulain.

The layout tests builder group is the only one supported, all the other Chromium-specific builder groups are
bound to be removed.

* TestResultServer/static-dashboards/history.js:
(.):


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@148729 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index bd0dd2f..0705af0 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,5 +1,18 @@
 2013-04-19  Zan Dobersek  <zdobersek@igalia.com>
 
+        [Dashboard] Only accept the 'group' parameter if present in the layout tests builders group
+        https://bugs.webkit.org/show_bug.cgi?id=114799
+
+        Reviewed by Benjamin Poulain.
+
+        The layout tests builder group is the only one supported, all the other Chromium-specific builder groups are
+        bound to be removed.
+
+        * TestResultServer/static-dashboards/history.js:
+        (.):
+
+2013-04-19  Zan Dobersek  <zdobersek@igalia.com>
+
         [Dashboard] Remove Chromium-specific builder loading code from loadBuildersList
         https://bugs.webkit.org/show_bug.cgi?id=114797
 
diff --git a/Tools/TestResultServer/static-dashboards/history.js b/Tools/TestResultServer/static-dashboards/history.js
index f4814a2..3220c3d 100644
--- a/Tools/TestResultServer/static-dashboards/history.js
+++ b/Tools/TestResultServer/static-dashboards/history.js
@@ -216,10 +216,7 @@
         case 'group':
             history.validateParameter(this.crossDashboardState, key, value,
                 function() {
-                  return value in LAYOUT_TESTS_BUILDER_GROUPS ||
-                      value in CHROMIUM_GPU_TESTS_BUILDER_GROUPS ||
-                      value in CHROMIUM_INSTRUMENTATION_TESTS_BUILDER_GROUPS ||
-                      value in CHROMIUM_GTESTS_BUILDER_GROUPS;
+                  return value in LAYOUT_TESTS_BUILDER_GROUPS;
                 });
             return true;
 
@@ -307,4 +304,4 @@
 
 }
 
-})();
\ No newline at end of file
+})();