Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6715)

Unified Diff: chrome/browser/resources/inspect/inspect.js

Issue 344863002: DevTools: one line fix in inspect.js (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/inspect/inspect.js
diff --git a/chrome/browser/resources/inspect/inspect.js b/chrome/browser/resources/inspect/inspect.js
index 00dda32c91b93c4d38ca6e62408ceee2a42938fc..a5bcb2f8bb2fe72ad8efb5c792e4165c3c513d4a 100644
--- a/chrome/browser/resources/inspect/inspect.js
+++ b/chrome/browser/resources/inspect/inspect.js
@@ -665,7 +665,7 @@ function unsetModal(dialog) {
if (dialog.tabIndexes[i] === null)
node.removeAttribute('tabindex');
else
- node.setAttribute('tabindex', tabIndexes[i]);
+ node.setAttribute('tabindex', dialog.tabIndexes[i]);
}
if (window.holdDevices) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698