2008-03-12 03:51:12 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2008-03-12 03:51:12 +03:00
|
|
|
|
|
|
|
#include "domstubs.idl"
|
|
|
|
|
2014-05-09 00:45:36 +04:00
|
|
|
[uuid(B2F824C4-D9D3-499B-8D3B-45C8245497C6)]
|
2008-03-12 03:51:12 +03:00
|
|
|
interface nsIDOMClientRect : nsISupports
|
|
|
|
{
|
|
|
|
readonly attribute float left;
|
|
|
|
readonly attribute float top;
|
|
|
|
readonly attribute float right;
|
|
|
|
readonly attribute float bottom;
|
2008-08-16 02:26:37 +04:00
|
|
|
readonly attribute float width;
|
|
|
|
readonly attribute float height;
|
2008-03-12 03:51:12 +03:00
|
|
|
};
|