| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef ElementAccessibleNode_h |
| 6 #define ElementAccessibleNode_h |
| 7 |
| 8 #include "core/dom/Element.h" |
| 9 #include "modules/accessibility/AccessibleNode.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 // Access an Accessibility Object Model node from a DOM Element. |
| 14 // Explainer: https://github.com/WICG/aom/blob/master/explainer.md |
| 15 // Spec: https://wicg.github.io/aom/spec/ |
| 16 class ElementAccessibleNode { |
| 17 STATIC_ONLY(ElementAccessibleNode); |
| 18 |
| 19 public: |
| 20 static AccessibleNode* accessibleNode(Element&); |
| 21 }; |
| 22 |
| 23 } // namespace blink |
| 24 |
| 25 #endif // ElementAccessibleNode_h |
| OLD | NEW |