Bug 1333990: Follow-up: Clarify documentation for PrecompiledScript bindings. draft
authorKris Maglione <maglione.k@gmail.com>
Fri, 17 Mar 2017 13:58:00 -0700
changeset 500885 45e0fda3c15fc4fdc30c93d3d858819c640a2fc3
parent 500884 6cb19ccf457e2d58347caa69f02af8a2b87de688
child 500886 94055b352dc120229cada5f68409664c275b164b
push id49830
push usermaglione.k@gmail.com
push dateFri, 17 Mar 2017 21:53:14 +0000
bugs1333990
milestone55.0a1
Bug 1333990: Follow-up: Clarify documentation for PrecompiledScript bindings. MozReview-Commit-ID: iDyic5hkgy
dom/webidl/PrecompiledScript.webidl
--- a/dom/webidl/PrecompiledScript.webidl
+++ b/dom/webidl/PrecompiledScript.webidl
@@ -1,23 +1,24 @@
 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
 /**
- * Represents a pre-compiled JS script, which can be repeatedly exeuted in
+ * Represents a pre-compiled JS script, which can be repeatedly executed in
  * different globals without being re-parsed.
  */
 [ChromeOnly, Exposed=(Window,System)]
 interface PrecompiledScript {
   /**
-   * Executes the script in the global of the given object, and returns the
-   * value of its last expression, if compiled with a return value.
+   * Executes the script in the context of, and with the security principal
+   * of, the given object's global. If compiled with a return value, returns
+   * the value of the script's last expression. Otherwise returns undefined.
    */
   [Throws]
   any executeInGlobal(object global);
 
   /**
    * The URL that the script was loaded from.
    */
   [Pure]