mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-14 04:03:47 +00:00
![James Teh](/assets/img/avatar_default.png)
This is now just an alias for HyperTextAccessible on all platforms. This was done with the following bash script: ``` cd accessible find -name HyperTextAccessibleWrap.h -delete sed -i 's/#include "HyperTextAccessibleWrap.h"/#include "HyperTextAccessible.h"/;/"HyperTextAccessibleWrap.h",/d;s/HyperTextAccessibleWrap/HyperTextAccessible/g' `git grep -l HyperTextAccessibleWrap` ``` Differential Revision: https://phabricator.services.mozilla.com/D184796
17 lines
632 B
C++
17 lines
632 B
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "HTMLCanvasAccessible.h"
|
|
|
|
#include "mozilla/a11y/Role.h"
|
|
|
|
using namespace mozilla::a11y;
|
|
|
|
HTMLCanvasAccessible::HTMLCanvasAccessible(nsIContent* aContent,
|
|
DocAccessible* aDoc)
|
|
: HyperTextAccessible(aContent, aDoc) {}
|
|
|
|
role HTMLCanvasAccessible::NativeRole() const { return roles::CANVAS; }
|