blob: 455f8ee3c679729ed9aa3a7f5a9a8cf6237bece3 [file] [log] [blame]
/*
* Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserve
* Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
interface HTMLFrameSetElement : HTMLElement {
[ImplementedAs=anonymousNamedGetter, OverrideBuiltins, NotEnumerable] getter Window (DOMString name);
[Reflect, TreatNullAs=NullString] attribute DOMString cols;
[Reflect, TreatNullAs=NullString] attribute DOMString rows;
// Event handler attributes
attribute EventHandler onbeforeunload;
attribute EventHandler onhashchange;
attribute EventHandler onmessage;
attribute EventHandler onoffline;
attribute EventHandler ononline;
attribute EventHandler onpopstate;
attribute EventHandler onresize;
attribute EventHandler onstorage;
attribute EventHandler onunload;
[Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange;
// Overrides of Element attributes (with different implementation in bindings).
attribute EventHandler onblur;
attribute EventHandler onerror;
attribute EventHandler onfocus;
attribute EventHandler onload;
// Not implemented yet.
// attribute EventHandler onafterprint;
// attribute EventHandler onbeforeprint;
// attribute EventHandler onredo;
// attribute EventHandler onundo;
};