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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h

Issue 2914723002: Fix crash in hidden <select> (Closed)
Patch Set: Remove non-working layout test Created 3 years, 7 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/modules/accessibility/AXMenuListOption.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h
index ced0f73d98c01258f1cf41222ed239faefd3b120..32f42e9e85d2652780c6cac86f05d2634d8fffbf 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h
@@ -52,6 +52,7 @@ class AXMenuListOption final : public AXMockObject {
Node* GetNode() const override { return element_; }
void Detach() override;
bool IsDetached() const override { return !element_; }
+ LocalFrameView* DocumentFrameView() const override;
AccessibilityRole RoleValue() const override;
bool CanHaveChildren() const override { return false; }
AXObjectImpl* ComputeParent() const override;

Powered by Google App Engine
This is Rietveld 408576698