mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Introduce a test IDL file.
This commit is contained in:
parent
4a6077ca4c
commit
4166ff4794
4 changed files with 63 additions and 0 deletions
17
src/components/script/dom/webidls/TestBinding.webidl
Normal file
17
src/components/script/dom/webidls/TestBinding.webidl
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue