Source Code (Use browser search to find items of interest.)

Class Index

kdelibs'HTMLCollectionFunc (./kdelibs/khtml/ecma/kjs_html.h:73)

  class HTMLCollectionFunc : public InternalFunction {
  public:
    HTMLCollectionFunc(DOM::HTMLCollection c, int i) : coll(c), id(i) { };
    KJSO *execute(const List &);
    enum { Item, NamedItem };
  private:
    DOM::HTMLCollection coll;
    int id;
  };

  ////////////////////// Image Object ////////////////////////