Introduce a test IDL file.

This commit is contained in:
Ms2ger 2014-03-04 16:28:34 +01:00
parent 4a6077ca4c
commit 4166ff4794
4 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,17 @@
/* 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/. */
interface TestBinding {
attribute boolean booleanAttribute;
readonly attribute byte byteAttribute;
readonly attribute octet octetAttribute;
readonly attribute short shortAttribute;
attribute unsigned short unsignedShortAttribute;
attribute long longAttribute;
attribute unsigned long unsignedLongAttribute;
attribute long long longLongAttribute;
readonly attribute unsigned long long unsignedLongLongAttribute;
attribute float floatAttribute;
attribute double doubleAttribute;
};