tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

HTMLDocument.webidl (1509B)


      1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
      4 * You can obtain one at http://mozilla.org/MPL/2.0/.
      5 */
      6 
      7 [LegacyOverrideBuiltIns,
      8 Exposed=Window,
      9 InstrumentedProps=(caretRangeFromPoint,
     10                    exitPictureInPicture,
     11                    featurePolicy,
     12                    onbeforecopy,
     13                    onbeforecut,
     14                    onbeforepaste,
     15                    oncancel,
     16                    onfreeze,
     17                    onmousewheel,
     18                    onresume,
     19                    onsearch,
     20                    onwebkitfullscreenchange,
     21                    onwebkitfullscreenerror,
     22                    pictureInPictureElement,
     23                    pictureInPictureEnabled,
     24                    registerElement,
     25                    wasDiscarded,
     26                    webkitCancelFullScreen,
     27                    webkitCurrentFullScreenElement,
     28                    webkitExitFullscreen,
     29                    webkitFullscreenElement,
     30                    webkitFullscreenEnabled,
     31                    webkitHidden,
     32                    webkitIsFullScreen,
     33                    webkitVisibilityState,
     34                    xmlEncoding,
     35                    xmlStandalone,
     36                    xmlVersion)]
     37 interface HTMLDocument : Document {
     38  // DOM tree accessors
     39  [Throws]
     40  getter object (DOMString name);
     41 };