Commit 6ffa9ec1 authored by loislo@chromium.org's avatar loislo@chromium.org

DevTools: one line fix in inspect.js

BUG=

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278827 0039d316-1c4b-4281-b951-d872f2087c98
parent a9a66151
...@@ -665,7 +665,7 @@ function unsetModal(dialog) { ...@@ -665,7 +665,7 @@ function unsetModal(dialog) {
if (dialog.tabIndexes[i] === null) if (dialog.tabIndexes[i] === null)
node.removeAttribute('tabindex'); node.removeAttribute('tabindex');
else else
node.setAttribute('tabindex', tabIndexes[i]); node.setAttribute('tabindex', dialog.tabIndexes[i]);
} }
if (window.holdDevices) { if (window.holdDevices) {
......
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