/* 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/. */ "use strict";
types.addDictType("imageData", { // The image data
data: "nullable:longstring", // The original image dimensions
size: "json",
});
types.addDictType("windowDimensions", { // The window innerWidth
innerWidth: "nullable:number", // The window innerHeight
innerHeight: "nullable:number",
});
/** * Returned from any call that might return a node that isn't connected to root * by nodes the child has seen, such as querySelector.
*/
types.addDictType("disconnectedNode", { // The actual node to return
node: "domnode",
// Nodes that are needed to connect the node to a node the client has already // seen
newParents: "array:domnode",
});
types.addDictType("disconnectedNodeArray", { // The actual node list to return
nodes: "array:domnode",
// Nodes that are needed to connect those nodes to the root.
newParents: "array:domnode",
});
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.