https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9d25998529f8dd62816fb99c5992638094b1aa91 authored by ffxbld on 28 September 2011, 19:45:27 UTC
Added tag FENNEC_7_0_1_BUILD1 for changeset 347b2b8651f4. CLOSED TREE a=release
Tip revision: 9d25998
TestScriptable.idl

[scriptable, uuid(76d74662-0eae-404c-9d1f-697c0e321c0a)]
interface testScriptableInterface {
  readonly attribute long scriptable_attr1;
  attribute long scriptable_attr2;
  [noscript] readonly attribute long notscriptable_attr1;
  [noscript] attribute long notscriptable_attr2;

  void scriptable_method1();
  [noscript] void notscriptable_method1();
  [notxpcom] void notscriptable_method2();
  [noscript, notxpcom] void notscriptable_method3();
};

[uuid(76d74662-0eae-404c-9d1f-697c0e321c0a)]
interface testNotscriptableInterface {
  readonly attribute long notscriptable_attr1;
  attribute long notscriptable_attr2;

  void notscriptable_method1();
};
back to top