diff --git a/VERSIONS_WIP/search_input_in_admin_menu b/VERSIONS_WIP/search_input_in_admin_menu
new file mode 100644
index 0000000000000000000000000000000000000000..0bc1dbd6eb35d4adf306718187995e3ef6bdf5fb
--- /dev/null
+++ b/VERSIONS_WIP/search_input_in_admin_menu
@@ -0,0 +1 @@
+ - Administration : ajout d'un champ de recherche dans le menu d'administration, la page des profils, la page des domaines, l'écran des variables systèmes et dans la page des bibliothèques.
\ No newline at end of file
diff --git a/application/modules/admin/views/scripts/bib/index.phtml b/application/modules/admin/views/scripts/bib/index.phtml
index 1fef22bd189d6ad7f2f4fc03ce7afea0cad6cec1..76256900ff13d7068ebfcbfb6fd768318cdbf9e4 100644
--- a/application/modules/admin/views/scripts/bib/index.phtml
+++ b/application/modules/admin/views/scripts/bib/index.phtml
@@ -1,4 +1,6 @@
 <?php
+Class_ScriptLoader::getInstance()->addSearchInputToContent($this->_('Filtrer les bibliothèques '));
+
 echo $this->profileSelect('bib',$this->id_zone,$this->id_bib,'z');
 echo ('<center><div align="center"><br>'.$this->bouton('id=c_19','picto=add','texte='.$this->traduire('Ajouter une bibliothèque').'','url='.BASE_URL.'/admin/bib/add','largeur=250px').'</div></center>');
 ?>
@@ -20,18 +22,18 @@ echo ('<center><div align="center"><br>'.$this->bouton('id=c_19','picto=add','te
     $ligne ++ ; if ($ligne & 1) $class="first"; else $class="second";
     $ville = ucfirst($bib->getVille());
     echo '<tr class="'.$class.'">'.
-                                    '<td valign="top">'.$ville. '</td>'.
-                                    '<td valign="top" align="left">'.$bib->getLibelle().'</td>'.
-                                                                                      '<td valign="top" align="center"><a href="'.BASE_URL.'/admin/bib/edit/id/'.$bib->getId().'">'.$this->boutonIco("type=edit").'</a></td>'.
-                                                                                                                                                                                                     '<td valign="top" align="center">'.$ico_del.'</td>';
+         '<td valign="top">'.$ville. '</td>'.
+         '<td valign="top" align="left">'.$bib->getLibelle().'</td>'.
+         '<td valign="top" align="center"><a href="'.BASE_URL.'/admin/bib/edit/id/'.$bib->getId().'">'.$this->boutonIco("type=edit").'</a></td>'.
+         '<td valign="top" align="center">'.$ico_del.'</td>';
 
     $actions = [['url' => $this->url(['action' => 'plans', 'id_bib' => $bib->getId()]),
-                'icon' => 'map',
-                'label' => $this->_('Plans de la bibliothèque')],
+                 'icon' => 'map',
+                 'label' => $this->_('Plans de la bibliothèque')],
 
                 ['url' => $this->url(['action' => 'localisations', 'id_bib' => $bib->getId()]),
-                'icon' => 'localisation',
-                'label' => $this->_('Localisations de la bibliothèque')],
+                 'icon' => 'localisation',
+                 'label' => $this->_('Localisations de la bibliothèque')],
 
                 ['url' => $this->url(['controller' => 'ouvertures', 'action' => 'index', 'id_site' => $bib->getId()]),
                  'icon' => 'calendar',
diff --git a/application/modules/admin/views/scripts/catalogue/index.phtml b/application/modules/admin/views/scripts/catalogue/index.phtml
index 69fa2c9da0ac8d5eec557a8fe33ef970410139ba..aadfb9a8952ea8f1b3efdee3428c68c5ca87c694 100644
--- a/application/modules/admin/views/scripts/catalogue/index.phtml
+++ b/application/modules/admin/views/scripts/catalogue/index.phtml
@@ -1,4 +1,7 @@
-<?php if (Class_Users::getIdentity()->hasRightAccessDomaines()) { ?>
+<?php
+Class_ScriptLoader::getInstance()->addSearchInputToContent($this->_('Filtrer les domaines '));
+
+if (Class_Users::getIdentity()->hasRightAccessDomaines()) { ?>
   <center>
     <div align="center"><br>
       <?php echo $this->bouton('id=c_19',
diff --git a/application/modules/admin/views/scripts/index/adminvar.phtml b/application/modules/admin/views/scripts/index/adminvar.phtml
index 64a2ab2d0eb11a6c7dab0441948572bff5251a61..9fc01fb75d202744cfa5eca2770f8efc5e08a526 100644
--- a/application/modules/admin/views/scripts/index/adminvar.phtml
+++ b/application/modules/admin/views/scripts/index/adminvar.phtml
@@ -1,14 +1,5 @@
 <?php
-Class_ScriptLoader::getInstance()
-->loadDataTables()
-->addJQueryReady("$('#adminvars').dataTable({
-'iDisplayLength': -1,
-'bPaginate': false,
-'columnDefs' : [
-  {'orderable': false, 'targets': 2}
-]
-})")
-->loadJQueryUI();
+Class_ScriptLoader::getInstance()->addSearchInputToContent($this->_('Filtrer les variables'));
 ?>
 
 <table id="adminvars">
diff --git a/application/modules/admin/views/scripts/profil/index.phtml b/application/modules/admin/views/scripts/profil/index.phtml
index b4525e2dabbba2baec7bd337f999ae7b9d0bd850..13571b5c572cd731b7a0808a306bbb9fc1dfd985 100644
--- a/application/modules/admin/views/scripts/profil/index.phtml
+++ b/application/modules/admin/views/scripts/profil/index.phtml
@@ -1,4 +1,6 @@
 <?php
+Class_ScriptLoader::getInstance()->addSearchInputToContent($this->_('Filtrer les profils '));
+
 print($this->profileSelect('profil',$this->id_zone,$this->id_bib,'zb',0,true));
 
 // Role admin portail -> on peut creer des profils
diff --git a/application/modules/admin/views/scripts/systeme/phpinfo.phtml b/application/modules/admin/views/scripts/systeme/phpinfo.phtml
index 6c2633224dbde79e3764b783d7f7dc5b8fa015f8..3c172f0ba24529a90016f811fd8d5a78cea7374a 100644
--- a/application/modules/admin/views/scripts/systeme/phpinfo.phtml
+++ b/application/modules/admin/views/scripts/systeme/phpinfo.phtml
@@ -1,17 +1,5 @@
-<style type="text/css">
-  #accordion h2 {
-  text-decoration:none;
-  color:black;
-  padding-left:25px;
-}
-</style>
-
-<script>
-  $(function(){$('#accordion').accordion({autoHeight:false});});
-</script>
-<div id="accordion">
-
-<?php 
+<?php
+Class_ScriptLoader::getInstance()->addSearchInputToContent($this->_('Filtrer les informations système'));
 ob_start();
 phpinfo(INFO_MODULES);
 $info = ob_get_clean();
@@ -26,4 +14,4 @@ $info = str_replace(array('<body>', '</body>', '<br />', '</html>'), '', $info);
 $info = str_replace(array('</h2>', '<h2>'), array('</h2><div>', '</div><h2>'), $info);
 $info = preg_replace('#<div class="center">[^<]*</div>#m', '', $info);
 echo $info;
-?></div>
+?>
diff --git a/library/Class/ScriptLoader.php b/library/Class/ScriptLoader.php
index adc2df254ad4a10ce4b6b9e24fafd4101f83785f..efdc029225f8f361dd8c69c394421317b23e8274 100644
--- a/library/Class/ScriptLoader.php
+++ b/library/Class/ScriptLoader.php
@@ -800,6 +800,34 @@ class Class_ScriptLoader {
     echo implode('',$this->_metas);
     return $this;
   }
+
+
+  protected function _addSearchInput($node, $id, $label, $fixed_elements) {
+    $options = json_encode(['id' => $id,
+                            'label' => $label . ' : ',
+                            'fixed_display' => $fixed_elements]);
+
+    $jquery = sprintf('$("%s").search_input(%s);', $node, $options);
+
+    return $this->addOPACPluginScript('search_input/search_input.js')
+                ->addJQueryReady($jquery);
+  }
+
+
+  public function addSearchInputToContent($label) {
+    return $this->_addSearchInput('.main > .modules',
+                                  'input_content_menu',
+                                  $label,
+                                  'table, thead, th , .form, .form *, center, center *, br, .bouton, a *, a, img, h1, h3, h3 + div , .error, h3 + div *, .soustitre, .soustitre *, tr *');
+  }
+
+
+  public function addSearchInputToLeftMenu($label) {
+    return $this->_addSearchInput('.main > .left',
+                                 'input_search_menu',
+                                  $label,
+                                  '.menuGaucheAdmin tr, .titre, img, table, tbody, td');
+  }
 }
 
 ?>
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php b/library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php
index 7dee1952e3e46b8b7e58feef32bf051e752cbe37..020703ac23b41099c153201633b949160f7f639e 100644
--- a/library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php
+++ b/library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php
@@ -319,6 +319,9 @@ class ZendAfi_View_Helper_Admin_MenuGaucheAdmin extends ZendAfi_View_Helper_Base
 
 
   public function menuGaucheAdmin() {
+    Class_ScriptLoader::getInstance()
+      ->addSearchInputToLeftMenu($this->_('Chercher dans le menu '));
+
     $this->user = Class_Users::getIdentity();
 
     return
diff --git a/public/admin/js/tree-view.js b/public/admin/js/tree-view.js
index 7c916dfb81e886e22b634abd04a7f2ee0d608f22..171e2a1396cac01f0a2b6aeb4e6a3ea434ab80d5 100644
--- a/public/admin/js/tree-view.js
+++ b/public/admin/js/tree-view.js
@@ -121,7 +121,7 @@ function treeViewHighlight(matches) {
 }
 
 function treeViewOpenSelected() {
-	if (treeViewSelectedCategory) {
+	if ('undefined' !== typeof(treeViewSelectedCategory)) {
 		$('a[data-hierarchy="child-of-' + treeViewSelectedCategory + '"]')
 			.parentsUntil('div.tree')
 			.prev()
diff --git a/public/admin/js/treeselect/treeselect.js b/public/admin/js/treeselect/treeselect.js
index f35d56b90e7ff20a9f04da1d5621c3d0a72949ae..e25109acc3ef854bc0bdf0a83a9a461f0a690b46 100644
--- a/public/admin/js/treeselect/treeselect.js
+++ b/public/admin/js/treeselect/treeselect.js
@@ -476,7 +476,6 @@
 
       accentsTidy = function(s){
         var r=s.toLowerCase();
-        r = r.replace(new RegExp("\\s", 'g'),"");
         r = r.replace(new RegExp("[àáâãäå]", 'g'),"a");
         r = r.replace(new RegExp("æ", 'g'),"ae");
         r = r.replace(new RegExp("ç", 'g'),"c");
@@ -487,7 +486,6 @@
         r = r.replace(new RegExp("Å“", 'g'),"oe");
         r = r.replace(new RegExp("[ùúûü]", 'g'),"u");
         r = r.replace(new RegExp("[ýÿ]", 'g'),"y");
-        r = r.replace(new RegExp("\\W", 'g'),"");
         return r;
       };
       
diff --git a/public/admin/skins/bokeh74/global.css b/public/admin/skins/bokeh74/global.css
index 71130d1769d9ad136bdaed002c6ee490741935d0..01e408e3de0f8e6952bce5be89943d6802eccd23 100755
--- a/public/admin/skins/bokeh74/global.css
+++ b/public/admin/skins/bokeh74/global.css
@@ -605,4 +605,4 @@ td[id*="menu_item"] {
 
 .form .tag_saisie {
     display: none;
-}
\ No newline at end of file
+}
diff --git a/public/admin/skins/retro/global.css b/public/admin/skins/retro/global.css
index 1cb3aa457e12ab7c35fe2a06a57a056e236212e7..36615388e99f00f09c2e015a2ee08b1209b12fa4 100755
--- a/public/admin/skins/retro/global.css
+++ b/public/admin/skins/retro/global.css
@@ -597,4 +597,4 @@ fieldset {
 
 .form .tag_saisie {
     display: none;
-}
\ No newline at end of file
+}
diff --git a/public/opac/java/search_input/search_input.css b/public/opac/java/search_input/search_input.css
new file mode 100644
index 0000000000000000000000000000000000000000..3e0f418d91d7fa1b2e8139f3dede1d4957f51c9a
--- /dev/null
+++ b/public/opac/java/search_input/search_input.css
@@ -0,0 +1,9 @@
+.search_input_not_found {
+    display: none;
+}
+
+
+.main > .modules .search_input {
+    float: right;
+    margin-right: 2em;
+}
\ No newline at end of file
diff --git a/public/opac/java/search_input/search_input.js b/public/opac/java/search_input/search_input.js
new file mode 100644
index 0000000000000000000000000000000000000000..d359045af535a78e88c446871073fb7e3f889c55
--- /dev/null
+++ b/public/opac/java/search_input/search_input.js
@@ -0,0 +1,121 @@
+/**
+ * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+
+(function ( $ ) {
+  $.fn.search_input = function(options) {
+    if ($('head').find('link[href*="search_input.css"]').length < 1) {
+      $('head').append('<link media="screen" href="' 
+		       + baseUrl + '/public/opac/java/search_input/search_input.css" rel="stylesheet" type="text/css"></link>');
+    }
+
+    var default_option_id = 'default_search_input_id';
+    var default_input_label = 'Rechercher';
+    var default_fixed_display = '.search_input, .search_input *';
+
+    if(undefined == options)
+      options = {id : default_input_id,
+		 label : default_input_label,
+		 fixed_display : ''};
+
+    if(undefined == options.id)
+      options.id = default_input_id;
+
+    if(undefined == options.label)
+      options.label = default_input_label;
+
+    if(undefined == options.fixed_display)
+      options.fixed_display = '';
+
+    if(options.fixed_display)
+      options.fixed_display = ', ' + options.fixed_display;
+
+    var html = $(this);
+    var not_found_class = 'search_input_not_found';
+
+    var onSearchInputChange = function(searchText) {
+      
+      var resetAll = function() {
+	html.find('*').removeClass(not_found_class);
+      }
+      
+      if (searchText == "" || searchText == '*') {
+	return resetAll();
+      }
+
+      var accentsTidy = function(s){
+        var r = s.toLowerCase();
+        r = r.replace(new RegExp("[àáâãäå]", 'g'),"a");
+        r = r.replace(new RegExp("æ", 'g'),"ae");
+        r = r.replace(new RegExp("ç", 'g'),"c");
+        r = r.replace(new RegExp("[èéêë]", 'g'),"e");
+        r = r.replace(new RegExp("[ìíîï]", 'g'),"i");
+        r = r.replace(new RegExp("ñ", 'g'),"n");                            
+        r = r.replace(new RegExp("[òóôõö]", 'g'),"o");
+        r = r.replace(new RegExp("Å“", 'g'),"oe");
+        r = r.replace(new RegExp("[ùúûü]", 'g'),"u");
+        r = r.replace(new RegExp("[ýÿ]", 'g'),"y");
+        return r;
+      };
+      
+      var highlightItems = function(elements) {
+	resetAll();
+	html.find('*').not(elements).not(default_fixed_display + options.fixed_display).addClass(not_found_class);
+	html.find(elements).parentsUntil(html).removeClass(not_found_class);
+      }
+
+      searchText = accentsTidy(searchText);
+      searchText = searchText.split(' ');
+      searchText = searchText.filter(function(term){return term;});
+
+      var reg_exps = [];
+
+      $.each(searchText, function(index, term) {
+	var reg = new RegExp('\\b' + term, 'gi');
+	reg_exps.push(reg);
+      });
+
+      var matches = html.find('*').contents().filter(function() {
+	if(this.nodeType != 3)
+	  return false;
+
+	for(var index in reg_exps)
+      	  if(!reg_exps[index].test(accentsTidy(this.nodeValue)))
+	    return false;
+
+	return true;
+      });
+
+      highlightItems(matches);
+    };
+
+
+    var search_input = html.prepend("<div class='search_input'>" +
+				    "<form>" + 
+				    "<label for='" + options.id + "'>" + options.label + "</label>" +
+				    "<input type='text' name='search_input' id='" + options.id +"'></input>" +
+				    "</form>" +
+				    "</div>")
+      .find('input')
+      .keyup(function(event){
+	onSearchInputChange($(this).val());
+      })
+      .end();
+  }
+} (jQuery));
diff --git a/public/opac/java/search_input/tests/qunit-phantomjs-runner b/public/opac/java/search_input/tests/qunit-phantomjs-runner
new file mode 120000
index 0000000000000000000000000000000000000000..b478803f2998523df54bcb533d821cffdbac8e19
--- /dev/null
+++ b/public/opac/java/search_input/tests/qunit-phantomjs-runner
@@ -0,0 +1 @@
+../../../../../tests_js/lib/qunit-phantomjs-runner/
\ No newline at end of file
diff --git a/public/opac/java/search_input/tests/run.sh b/public/opac/java/search_input/tests/run.sh
new file mode 100644
index 0000000000000000000000000000000000000000..717493f21ce88c00824b1acc79119167099b926e
--- /dev/null
+++ b/public/opac/java/search_input/tests/run.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+MY_DIR="$(dirname "${BASH_SOURCE[0]}")"
+
+phantomjs $MY_DIR/qunit-phantomjs-runner/runner.js $MY_DIR/search_input.html
diff --git a/public/opac/java/search_input/tests/search_input.html b/public/opac/java/search_input/tests/search_input.html
new file mode 100644
index 0000000000000000000000000000000000000000..4cc85dbf29a96c71b7b8d1b194a51fb3a2e37a91
--- /dev/null
+++ b/public/opac/java/search_input/tests/search_input.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<!--
+/**
+ * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+-->
+<html>
+<head>
+  <meta charset="utf-8">
+  <title>QUnit tests</title>
+  <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-git.css">
+</head>
+<body>
+  <div id="qunit"></div>
+  <div id="qunit-fixture"></div>
+  <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
+  <script src="../search_input.js"></script>
+  <script type="text/javascript">var baseUrl = ".."</script>
+  <script src="http://code.jquery.com/qunit/qunit-1.13.0.js"></script>
+  <script src="search_input_test.js"></script>
+</body>
+</html>
diff --git a/public/opac/java/search_input/tests/search_input_test.js b/public/opac/java/search_input/tests/search_input_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..192230e69291c00ee0c98289b1928399b8c3898d
--- /dev/null
+++ b/public/opac/java/search_input/tests/search_input_test.js
@@ -0,0 +1,70 @@
+/**
+ * Copyright (c) 2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+var fixture;
+var html = $('html');
+html.find('div').css('color', 'green');
+QUnit.module('search_widget', {
+  setup: function() {
+
+    fixture = $('<div>'
+		+'<article>Bokeh</article>'
+		+'<div class="article_full_separator"></div>'
+		+'<article>Biquette</article>'
+		+'<div class="article_full_separator"></div>'
+		+'<article>La biquette</article>'
+		+'</div>');
+
+    fixture.search_input({ id : 'admin_left_menu', 
+			   label : '' ,
+			   fixed_display : 'div'});
+  }
+});
+
+
+test('search input should be present', function() {
+  deepEqual(fixture.find('input[name="search_input"][id="admin_left_menu"]').length, 1, fixture.html());
+});
+
+
+test('search input css should be present', function() {
+  deepEqual(html.find('link[href*="public/opac/java/search_input/search_input.css"]').length, 1, html.html());
+});
+
+
+test('div class separator should not be hide', function() {
+  fixture.find('input').val('biq');
+  fixture.find('input').trigger($.Event( "keyup", { keyCode: 0 }));
+  deepEqual(fixture.find('div.search_input_not_found.article_full_separator').length, 0, fixture.html());
+});
+
+
+test('search term "biq" should hide article Bokeh', function() {
+  fixture.find('input').val('biq');
+  fixture.find('input').trigger($.Event( "keyup", { keyCode: 0 }));
+  deepEqual(fixture.find('article.search_input_not_found').length, 1, fixture.html());
+});
+
+
+test('search terms "biq la" should hide articles Bokeh and Biquette', function() {
+  fixture.find('input').val('biq la');
+  fixture.find('input').trigger($.Event( "keyup", { keyCode: 0 }));
+  deepEqual(fixture.find('article.search_input_not_found').length, 2, fixture.html());
+});
+
diff --git a/tests/js/SearchInputTest.php b/tests/js/SearchInputTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..d843ee3f83b0e23ece8c26f3bcc3ac7a96c957dc
--- /dev/null
+++ b/tests/js/SearchInputTest.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class SearchInputTest extends PHPUnit_Framework_TestCase {
+
+  /** @test */
+  public function searchInputJStestShouldSuccess() {
+    exec('phantomjs ' . ROOT_PATH . 'tests_js/lib/qunit-phantomjs-runner/runner.js ' . ROOT_PATH . 'public/opac/java/search_input/tests/search_input.html', $output, $result);
+  $this->assertEquals(0, $result, implode("\n", $output));
+  }
+}
+?>
\ No newline at end of file