summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/host_table_entry.js
diff options
context:
space:
mode:
authorrmsousa@chromium.org <rmsousa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-05 23:47:44 +0000
committerrmsousa@chromium.org <rmsousa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-05 23:47:44 +0000
commit92336f5fca0f3683204e4f9958fd7e80256a0333 (patch)
tree777e08898bbfcd9ff961aec9586be0e147f65ac6 /remoting/webapp/host_table_entry.js
parent7ce510251dd269f3be2d44d943ee63f02693b76a (diff)
downloadchromium_src-92336f5fca0f3683204e4f9958fd7e80256a0333.zip
chromium_src-92336f5fca0f3683204e4f9958fd7e80256a0333.tar.gz
chromium_src-92336f5fca0f3683204e4f9958fd7e80256a0333.tar.bz2
Remove focus ring from host list label
BUG=150670 Review URL: https://chromiumcodereview.appspot.com/11035023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/host_table_entry.js')
-rw-r--r--remoting/webapp/host_table_entry.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/webapp/host_table_entry.js b/remoting/webapp/host_table_entry.js
index 0407b9b..7c7fb11 100644
--- a/remoting/webapp/host_table_entry.js
+++ b/remoting/webapp/host_table_entry.js
@@ -330,10 +330,10 @@ remoting.HostTableEntry.prototype.removeEditBox_ = function() {
* @private
*/
remoting.HostTableEntry.prototype.setHostName_ = function() {
- var hostNameNode = /** @type {HTMLElement} */ document.createElement('span');
+ var hostNameNode = /** @type {HTMLElement} */ document.createElement('a');
if (this.host.status == 'ONLINE') {
hostNameNode.innerText = this.host.hostName;
- hostNameNode.tabIndex = 0;
+ hostNameNode.href = '#';
this.registerFocusHandlers_(hostNameNode);
/** @type {remoting.HostTableEntry} */
var that = this;