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 ////////////////////////