https://github.com/mozilla/gecko-dev
Raw File
Tip revision: dc0562fa4481eabb1132e7b18d15ab3a2d10f97c authored by Mark Finkle on 27 March 2013, 19:37:30 UTC
Backout e34c8b3ff887, not needed for Fx20
Tip revision: dc0562f
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