diff options
Diffstat (limited to 'dom/webidl/NotifyPaintEvent.webidl')
-rw-r--r-- | dom/webidl/NotifyPaintEvent.webidl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dom/webidl/NotifyPaintEvent.webidl b/dom/webidl/NotifyPaintEvent.webidl new file mode 100644 index 000000000..799abbb29 --- /dev/null +++ b/dom/webidl/NotifyPaintEvent.webidl @@ -0,0 +1,18 @@ +/* -*- 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/. + * + * For more information about this interface see nsIDOMNotifyPaintEvent.idl + */ + +interface NotifyPaintEvent : Event +{ + readonly attribute DOMRectList clientRects; + + readonly attribute DOMRect boundingClientRect; + + readonly attribute PaintRequestList paintRequests; + + readonly attribute unsigned long long transactionId; +}; |