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

Unified Diff: chrome/browser/resources/options2/options_page.js

Issue 10830075: Merge 144536 - Fix overlay display in certificate options. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 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/options2/options_page.js
===================================================================
--- chrome/browser/resources/options2/options_page.js (revision 149044)
+++ chrome/browser/resources/options2/options_page.js (working copy)
@@ -779,9 +779,11 @@
if (visible) {
uber.invokeMethodOnParent('beginInterceptingEvents');
this.pageDiv.removeAttribute('aria-hidden');
- this.parentPage.pageDiv.setAttribute('aria-hidden', true);
+ if (this.parentPage)
+ this.parentPage.pageDiv.setAttribute('aria-hidden', true);
} else {
- this.parentPage.pageDiv.removeAttribute('aria-hidden');
+ if (this.parentPage)
+ this.parentPage.pageDiv.removeAttribute('aria-hidden');
}
if (container.hidden != visible) {
« 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