You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns a Boolean value that indicates whether the specified command is in the indeterminate state.
4380
+
* Returns the current value of the document, range, or current selection for the given command.
4378
4381
* @param commandId String that specifies a command identifier.
4379
4382
*/
4380
-
queryCommandIndeterm(commandId: string): boolean;
4383
+
queryCommandValue(commandId: string): string;
4381
4384
/**
4382
4385
* Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.
4383
4386
* @param commandId Specifies a command identifier.
* Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.
4400
+
* @param content The text and HTML tags to write.
4401
+
*/
4402
+
writeln(...text: string[]): void;
4397
4403
/**
4398
4404
* Writes one or more HTML expressions to a document in the specified window.
4399
4405
* @param content Specifies the text and HTML tags to write.
4400
4406
*/
4401
4407
write(...text: string[]): void;
4408
+
/**
4409
+
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
4410
+
* @param url Specifies a MIME type for the document.
4411
+
* @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.
4412
+
* @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following values are supported.
4413
+
* @param replace Specifies whether the existing entry for the document is replaced in the history list.
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
4414
-
* @param url Specifies a MIME type for the document.
4415
-
* @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.
4416
-
* @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following values are supported.
4417
-
* @param replace Specifies whether the existing entry for the document is replaced in the history list.
Copy file name to clipboardExpand all lines: inputfiles/comments.json
-9Lines changed: 0 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -785,9 +785,6 @@
785
785
"elementFromPoint": {
786
786
"comment": "/**\r\n * Returns the element for the specified x coordinate and the specified y coordinate.\r\n * @param x The x-offset\r\n * @param y The y-offset\r\n */"
787
787
},
788
-
"queryCommandText": {
789
-
"comment": "/**\r\n * Retrieves the string associated with a command.\r\n * @param commandId String that contains the identifier of a command. This can be any command identifier given in the list of Command Identifiers.\r\n */"
790
-
},
791
788
"write": {
792
789
"comment": "/**\r\n * Writes one or more HTML expressions to a document in the specified window.\r\n * @param content Specifies the text and HTML tags to write.\r\n */"
793
790
},
@@ -809,9 +806,6 @@
809
806
"queryCommandEnabled": {
810
807
"comment": "/**\r\n * Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.\r\n * @param commandId Specifies a command identifier.\r\n */"
811
808
},
812
-
"focus": {
813
-
"comment": "/**\r\n * Causes the element to receive the focus and executes the code specified by the onfocus event.\r\n */"
814
-
},
815
809
"close": {
816
810
"comment": "/**\r\n * Closes an output stream and forces the sent data to display.\r\n */"
817
811
},
@@ -836,9 +830,6 @@
836
830
"hasFocus": {
837
831
"comment": "/**\r\n * Gets a value indicating whether the object currently has focus.\r\n */"
838
832
},
839
-
"execCommandShowHelp": {
840
-
"comment": "/**\r\n * Displays help information for the given command identifier.\r\n * @param commandId Displays help information for the given command identifier.\r\n */"
841
-
},
842
833
"createAttribute": {
843
834
"comment": "/**\r\n * Creates an attribute object with a specified name.\r\n * @param name String that sets the attribute object's name.\r\n */"
"element-requestfullscreen": "Displays element fullscreen and resolves promise when done.",
3
+
"document-fullscreenenabled": "Returns true if document has the ability to display elements fullscreen\nand fullscreen is supported, or false otherwise.",
4
+
"document-exitfullscreen": "Stops document's fullscreen element from being displayed fullscreen and\nresolves promise when done.",
0 commit comments