2011-11-25 16:58:34 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2011-11-25 16:58:34 +00:00
|
|
|
|
|
|
|
#include "nsHyperTextAccessible.h"
|
|
|
|
|
|
|
|
#ifndef _nsHTMLCanvasAccessible_H_
|
|
|
|
#define _nsHTMLCanvasAccessible_H_
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HTML canvas accessible (html:canvas).
|
|
|
|
*/
|
|
|
|
class nsHTMLCanvasAccessible : public nsHyperTextAccessible
|
|
|
|
{
|
|
|
|
public:
|
2012-05-27 09:01:40 +00:00
|
|
|
nsHTMLCanvasAccessible(nsIContent* aContent, DocAccessible* aDoc);
|
2011-11-25 16:58:34 +00:00
|
|
|
virtual ~nsHTMLCanvasAccessible() { }
|
|
|
|
|
|
|
|
// nsAccessible
|
2012-01-12 03:07:35 +00:00
|
|
|
virtual mozilla::a11y::role NativeRole();
|
2011-11-25 16:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|