/* GNU GENERAL LICENSE Copyright (C) 2006 The Lobo Project. Copyright (C) 2014 - 2017 Lobo Evolution This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either verion 3 of the License, or (at your option) any later version. This program 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 General License for more details. You should have received a copy of the GNU General Public along with this program. If not, see <http://www.gnu.org/licenses/>. Contact info: lobochief@users.sourceforge.net; ivan.difrancesco@yahoo.it */ package org.lobobrowser.html; /** * The Interface HtmlJsAttributeProperties. */ public interface HtmlJsAttributeProperties { /** The focus. */ String FOCUS = "focus"; /** The blur. */ String BLUR = "blur"; /** The click. */ String CLICK = "click"; /** The dblclick. */ String DBLCLICK = "dblclick"; /** The mousedown. */ String MOUSEDOWN = "mousedown"; /** The mouseup. */ String MOUSEUP = "mouseup"; /** The mouseover. */ String MOUSEOVER = "mouseover"; /** The mousemove. */ String MOUSEMOVE = "mousemove"; /** The mouseout. */ String MOUSEOUT = "mouseout"; /** The keypress. */ String KEYPRESS = "keypress"; /** The keydown. */ String KEYDOWN = "keydown"; /** The keyup. */ String KEYUP = "keyup"; /** The ctextmenu. */ String CTEXTMENU = "ctextmenu"; /** The abort. */ String ABORT = "abort"; /** The play. */ String PLAY = "play"; /** The playing. */ String PLAYING = "playing"; /** The progress. */ String PROGRESS = "progress"; /** The readystatechange. */ String READYSTATECHANGE = "readystatechange"; /** The scroll. */ String SCROLL = "scroll"; /** The seeked. */ String SEEKED = "seeked"; /** The seeking. */ String SEEKING = "seeking"; /** The select. */ String SELECT = "select"; /** The show. */ String SHOW = "show"; /** The stalled. */ String STALLED = "stalled"; /** The submit. */ String SUBMIT = "submit"; /** The suspend. */ String SUSPEND = "suspend"; /** The timeupdate. */ String TIMEUPDATE = "timeupdate"; /** The waiting. */ String WAITING = "waiting"; /** The volumechange. */ String VOLUMECHANGE = "volumechange"; /** The finish. */ String FINISH = "finish"; /** The start. */ String START = "start"; /** The bounce. */ String BOUNCE = "bounce"; /** The load. */ String LOAD = "load"; /** The onfocus. */ String ONFOCUS = "onfocus"; /** The onblur. */ String ONBLUR = "onblur"; /** The onclick. */ String ONCLICK = "onclick"; /** The ondblclick. */ String ONDBLCLICK = "ondblclick"; /** The onmousedown. */ String ONMOUSEDOWN = "onmousedown"; /** The onmouseup. */ String ONMOUSEUP = "onmouseup"; /** The onmouseover. */ String ONMOUSEOVER = "onmouseover"; /** The onmousemove. */ String ONMOUSEMOVE = "onmousemove"; /** The onmouseout. */ String ONMOUSEOUT = "onmouseout"; /** The onkeypress. */ String ONKEYPRESS = "onkeypress"; /** The onkeydown. */ String ONKEYDOWN = "onkeydown"; /** The onkeyup. */ String ONKEYUP = "onkeyup"; /** The oncontextmenu. */ String ONCONTEXTMENU = "oncontextmenu"; /** The onabort. */ String ONABORT = "onabort"; /** The onplay. */ String ONPLAY = "onplay"; /** The onplaying. */ String ONPLAYING = "onplaying"; /** The onprogress. */ String ONPROGRESS = "onprogress"; /** The onreadystatechange. */ String ONREADYSTATECHANGE = "onreadystatechange"; /** The onscroll. */ String ONSCROLL = "onscroll"; /** The onseeked. */ String ONSEEKED = "onseeked"; /** The onseeking. */ String ONSEEKING = "onseeking"; /** The onselect. */ String ONSELECT = "onselect"; /** The onshow. */ String ONSHOW = "onshow"; /** The onstalled. */ String ONSTALLED = "onstalled"; /** The onsubmit. */ String ONSUBMIT = "onsubmit"; /** The onsuspend. */ String ONSUSPEND = "onsuspend"; /** The ontimeupdate. */ String ONTIMEUPDATE = "ontimeupdate"; /** The onwaiting. */ String ONWAITING = "onwaiting"; /** The onvolumechange. */ String ONVOLUMECHANGE = "onvolumechange"; /** The onfinish. */ String ONFINISH = "onfinish"; /** The onstart. */ String ONSTART = "onstart"; /** The onbounce. */ String ONBOUNCE = "onbounce"; /** The onload. */ String ONLOAD = "onload"; /** The onafterprint. */ String ONAFTERPRINT = "onafterprint"; /** The onbeforeprint. */ String ONBEFOREPRINT = "onbeforeprint"; /** The onbeforeunload. */ String ONBEFOREUNLOAD = "onbeforeunload"; /** The onerror. */ String ONERROR = "onerror"; /** The onhashchange. */ String ONHASHCHANGE = "onhashchange"; /** The onmessage. */ String ONMESSAGE = "onmessage"; /** The onoffline. */ String ONOFFLINE = "onoffline"; /** The ononline. */ String ONONLINE = "ononline"; /** The onpopstate. */ String ONPOPSTATE = "onpopstate"; /** The onpagehide. */ String ONPAGEHIDE = "onpagehide"; /** The onpageshow. */ String ONPAGESHOW = "onpageshow"; /** The onredo. */ String ONREDO = "onredo"; /** The onresize. */ String ONRESIZE = "onresize"; /** The onstorage. */ String ONSTORAGE = "onstorage"; /** The onundo. */ String ONUNDO = "onundo"; /** The onunload. */ String ONUNLOAD = "onunload"; }