https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9d30af265328bf908adda4cf44e4de4a1f392575 authored by seabld on 26 July 2012, 03:19:29 UTC
Added tag SEAMONKEY_2_12b2_RELEASE for changeset FIREFOX_15_0b2_BUILD1. CLOSED TREE a=release
Tip revision: 9d30af2
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