HTMLIFrameElement.addNextPaintListener()
HTMLIFrameElement.clearMatch()
HTMLIFrameElement.download()
HTMLIFrameElement.executeScript()
HTMLIFrameElement.findAll()
HTMLIFrameElement.findNext()
HTMLIFrameElement.getActive()
HTMLIFrameElement.getCanGoBack()
HTMLIFrameElement.getCanGoForward()
HTMLIFrameElement.getContentDimensions()
HTMLIFrameElement.getMainfest()
HTMLIFrameElement.getMuted()
HTMLIFrameElement.getScreenshot()
HTMLIFrameElement.getStructuredData()
HTMLIFrameElement.goBack()
HTMLIFrameElement.goForward()
HTMLIFrameElement.getVisible()
HTMLIFrameElement.getVolume()
HTMLIFrameElement.mute()
HTMLIFrameElement.purgeHistory()
HTMLIFrameElement.reload()
HTMLIFrameElement.removeNextPaintListener()
HTMLIFrameElement.sendMouseEvent()
HTMLIFrameElement.sendTouchEvent()
HTMLIFrameElement.setActive()
HTMLIFrameElement.setInputMethodActive()
HTMLIFrameElement.setNFCFocus()
HTMLIFrameElement.setVisible()
HTMLIFrameElement.setVolume()
HTMLIFrameElement.stop()
HTMLIFrameElement.unmute()
HTMLIFrameElement.zoom()
mozbrowseractivitydone
mozbrowserasyncscroll
mozbrowseraudioplaybackchange
mozbrowsercaretstatechanged
mozbrowserclose
mozbrowsercontextmenu
mozbrowserdocumentfirstpaint
mozbrowsererror
mozbrowserfindchange
mozbrowserfirstpaint
mozbrowsericonchange
mozbrowserloadend
mozbrowserloadstart
mozbrowserlocationchange
mozbrowsermanifestchange
mozbrowsermetachange
mozbrowseropensearch
mozbrowseropentab
mozbrowseropenwindow
mozbrowserresize
mozbrowserscroll
mozbrowserscrollareachanged
mozbrowserscrollviewchange
mozbrowsersecuritychange
mozbrowserselectionstatechanged
mozbrowsershowmodalprompt
mozbrowsertitlechange
mozbrowserusernameandpasswordrequired
mozbrowservisibilitychange
Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The sendMouseEvent()
method of the HTMLIFrameElement
interface allows you to fake a mouse event and send it to the browser <iframe>
's content.
instanceOfHTMLIframeElement.sendMouseEvent(type, x, y, button, clickCount, modifiers);
Void.
type
mousedown
, mouseup
, mousemove
, mouseover
, mouseout
, or contextmenu
.x
<iframe>
's visible area in CSS pixels.y
<iframe>
's visible area in CSS pixels.button
0
(Left button), 1
(middle button), or 2
(right button).clickCount
modifiers
1
: Alt2
: Ctrl4
: Shift8
: Meta16
: Alt Gr32
: Caps Lock64
: Fn128
: Num Lock256
: Scroll512
: Symbol Lock1024
: WinNote: You can specify multiple key modifiers separated by a pipe symbol, for example 1 | 1014
.
var browser = document.querySelector('iframe'); browser.sendMouseEvent("mousemove", x, y, 0, 0, 0); browser.sendMouseEvent("mousedown", x, y, 0, 1, 0); browser.sendMouseEvent("mouseup", x, y, 0, 1, 0);
Not part of any specification.
Supported since Firefox 47, in chrome code only.
Unlikely ever to be supported in other browsers.