2013-03-17 12:51:36 +04:00
|
|
|
/* -*- Mode: IDL; 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/. */
|
|
|
|
|
2015-06-28 19:34:01 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2014-10-11 17:46:01 +04:00
|
|
|
interface DOMCursor : EventTarget {
|
2013-03-17 12:51:36 +04:00
|
|
|
readonly attribute boolean done;
|
|
|
|
[Throws]
|
|
|
|
void continue();
|
|
|
|
};
|
2014-10-11 17:46:01 +04:00
|
|
|
|
|
|
|
DOMCursor implements DOMRequestShared;
|