summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resources/webidl2/test/syntax/idl/primitives.widl
blob: 92939601a1a839cf7c48c3ed748eeb93bfa3febc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
interface Primitives {
  attribute boolean truth;
  attribute byte character;
  attribute octet value;
  attribute short number;
  attribute unsigned short positive;
  attribute long big;
  attribute unsigned long bigpositive;
  attribute long long bigbig;
  attribute  unsigned long long bigbigpositive;
  attribute float real;
  attribute double bigreal; 
  attribute unrestricted float realwithinfinity;
  attribute unrestricted double bigrealwithinfinity; 
  attribute DOMString string; 
  attribute ByteString bytes; 
  attribute Date date;
  attribute RegExp regexp;
};