Commit 6e873ef3 authored by fukino's avatar fukino Committed by Commit bot

Set tabindex of search box -1 not to be focused by default.

BUG=408949
TEST=manually

Review URL: https://codereview.chromium.org/529693002

Cr-Commit-Position: refs/heads/master@{#292859}
parent ba4c2402
...@@ -312,7 +312,7 @@ ...@@ -312,7 +312,7 @@
<div class="topbutton-bar"> <div class="topbutton-bar">
<button class="menubutton icon search-button" id="search-button" tabindex="7"></button> <button class="menubutton icon search-button" id="search-button" tabindex="7"></button>
<div id="search-box"> <div id="search-box">
<input type="search" tabindex="99" <input type="search" tabindex="-1"
i18n-values="aria-label:SEARCH_TEXT_LABEL;placeholder:SEARCH_TEXT_LABEL"> i18n-values="aria-label:SEARCH_TEXT_LABEL;placeholder:SEARCH_TEXT_LABEL">
<button class="clear"></button> <button class="clear"></button>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment