Bug 1850635 [wpt PR 41704] - Implement parseHTMLUnsafe and setHTMLUnsafe, a=testonly
[gecko.git] / accessible / interfaces / nsIAccessibleVirtualCursorChangeEvent.idl
blob1b5d9970f5b0691ef44ac57f8d3dfc10187192d9
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsIAccessibleEvent.idl"
8 /*
9 * An interface for virtual cursor changed events.
10 * Passes previous cursor position and text offsets.
12 [scriptable, builtinclass, uuid(a58693b1-009e-4cc9-ae93-9c7d8f85cfdf)]
13 interface nsIAccessibleVirtualCursorChangeEvent : nsIAccessibleEvent
15 /**
16 * Previous object pointed at by virtual cursor, null if none.
18 readonly attribute nsIAccessible oldAccessible;
20 /**
21 * New object pointed at by virtual cursor, null if none.
23 readonly attribute nsIAccessible newAccessible;
25 /**
26 * Reason for virtual cursor move.
28 readonly attribute short reason;