summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resources/webidl2/test/syntax/idl/dictionary.widl
blob: c64a14c859098786d10fd3270cf66e5c4ef8b020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Extracted from Web IDL editors draft May 31 2011
dictionary PaintOptions {
  DOMString? fillPattern = "black";
  DOMString? strokePattern = null;
  Point position;
  // https://heycam.github.io/webidl/#dfn-optional-argument-default-value allows sequences to default to "[]".
  sequence<long> seq = [];
  // https://heycam.github.io/webidl/#required-dictionary-member
  required long reqSeq;
};

partial dictionary A {
  long h;
  long d;
};