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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h

Issue 2129863002: Handle focusability for plugin elements which has browsing context (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use super class. Created 4 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
Index: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
index 1f9eed4a360a1ba6b1aeef1aec81f3c2b43c6745..975a9ffbff04d02cfbbdb9d160c952d388494e40 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
@@ -92,6 +92,7 @@ protected:
void setSandboxFlags(SandboxFlags);
bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool replaceCurrentItem);
+ bool isKeyboardFocusable() const override;
private:
// Intentionally private to prevent redundant checks when the type is
@@ -99,7 +100,6 @@ private:
bool isLocal() const override { return true; }
bool isRemote() const override { return false; }
- bool isKeyboardFocusable() const override;
bool isFrameOwnerElement() const final { return true; }
virtual ReferrerPolicy referrerPolicyAttribute() { return ReferrerPolicyDefault; }

Powered by Google App Engine
This is Rietveld 408576698