https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c9db439e0244404eec2bfdd19a282dfb45a990de authored by ffxbld on 30 July 2013, 18:08:39 UTC
Added FENNEC_23_0_RELEASE FENNEC_23_0_BUILD1 tag(s) for changeset 394976eb6e58. DONTBUILD CLOSED TREE a=release
Tip revision: c9db439
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