@@ -932,15 +932,15 @@ abstract class Element extends Node with NodeSelector with ParentNode with NonDo
932
932
* Gets the markup of the element including its content. When used as a
933
933
* setter, replaces the element with nodes parsed from the given string.
934
934
*
935
- * Supported by FF> 10, any Opera, any Chrome, any IE, any Safari
935
+ * Supported by FF> 10, any Opera, any Chrome, any IE, any Safari
936
936
*/
937
937
var outerHTML : String = js.native
938
938
939
939
/**
940
940
* innerHTML sets or gets the HTML syntax describing the element's descendants.
941
941
*
942
- * Note: If a < div>, < span> , or < noembed> node has a child text node that includes
943
- * the characters (&), (< ), or (> ), innerHTML returns these characters as &,
942
+ * Note: If a < div>, < span> , or < noembed> node has a child text node that includes
943
+ * the characters (&), (< ), or (> ), innerHTML returns these characters as &,
944
944
* < and > respectively. Use Node.textContent to get a correct copy of these
945
945
* text nodes' contents.
946
946
*/
@@ -955,14 +955,14 @@ abstract class Element extends Node with NodeSelector with ParentNode with NonDo
955
955
var accessKey : String = js.native
956
956
957
957
/**
958
- * Supported by FF> 3.6, any Opera, any Chrome, any IE, any Safari
958
+ * Supported by FF> 3.6, any Opera, any Chrome, any IE, any Safari
959
959
*/
960
960
var classList : DOMTokenList = js.native
961
961
962
962
def scrollIntoView (top : Boolean = js.native): Unit = js.native
963
963
964
964
/**
965
- * Supported by FF> 8, Opera> 7, Chrome> 1, IE> 4, Safari> 4
965
+ * Supported by FF> 8, Opera> 7, Chrome> 1, IE> 4, Safari> 4
966
966
*/
967
967
def insertAdjacentHTML (where : String , html : String ): Unit = js.native
968
968
@@ -1625,7 +1625,7 @@ trait DocumentEvent extends js.Object {
1625
1625
1626
1626
/**
1627
1627
* A CDATA Section can be used within XML to include extended portions of
1628
- * unescaped text, such that the symbols < and & do not need escaping as they
1628
+ * unescaped text, such that the symbols < and & do not need escaping as they
1629
1629
* normally do within XML when used as text.
1630
1630
*
1631
1631
* As a CDATASection has no properties or methods unique to itself and only
@@ -2206,7 +2206,7 @@ class Window extends EventTarget with WindowLocalStorage
2206
2206
var onkeypress : js.Function1 [KeyboardEvent , _] = js.native
2207
2207
2208
2208
/**
2209
- * Returns the element (such as < iframe> or < object> ) in which the window is embedded,
2209
+ * Returns the element (such as < iframe> or < object> ) in which the window is embedded,
2210
2210
* or null if the window is top-level.
2211
2211
*
2212
2212
* MDN
@@ -2531,7 +2531,7 @@ class CanvasGradient extends js.Object {
2531
2531
/**
2532
2532
* Add a new stop, defined by an offset and a color, to the gradient. If the offset is not
2533
2533
* between 0 and 1 an INDEX_SIZE_ERR is raised, if the color can't be parsed as a CSS
2534
- * < color> , a SYNTAX_ERR is raised.
2534
+ * < color> , a SYNTAX_ERR is raised.
2535
2535
*
2536
2536
* MDN
2537
2537
*/
@@ -2823,7 +2823,7 @@ object KeyboardEvent extends js.Object {
2823
2823
/**
2824
2824
* Each web page loaded in the browser has its own document object. The Document
2825
2825
* interface serves as an entry point to the web page's content (the DOM tree,
2826
- * including elements such as < body> and < table> ) and provides functionality global
2826
+ * including elements such as < body> and < table> ) and provides functionality global
2827
2827
* to the document (such as obtaining the page's URL and creating new elements in the
2828
2828
* document).
2829
2829
*
@@ -2866,7 +2866,7 @@ abstract class Document extends Node with NodeSelector with DocumentEvent with P
2866
2866
2867
2867
/**
2868
2868
* Returns the Element that is the root element of the document (for example, the
2869
- * < html> element for HTML documents).
2869
+ * < html> element for HTML documents).
2870
2870
*
2871
2871
* MDN
2872
2872
*/
@@ -3142,8 +3142,8 @@ class MessageEvent extends Event {
3142
3142
3143
3143
3144
3144
/**
3145
- * The 2D rendering context for the drawing surface of a < canvas> element. To get this
3146
- * object, call getContext() on a < canvas> , supplying "2d" as the argument:
3145
+ * The 2D rendering context for the drawing surface of a < canvas> element. To get this
3146
+ * object, call getContext() on a < canvas> , supplying "2d" as the argument:
3147
3147
*
3148
3148
* MDN
3149
3149
*/
@@ -5243,7 +5243,7 @@ class History extends js.Object {
5243
5243
/**
5244
5244
* The TimeRanges interface is used to represent a set of time ranges, primarily for
5245
5245
* the purpose of tracking which portions of media have been buffered when loading it
5246
- * for use by the < audio> and < video> elements.
5246
+ * for use by the < audio> and < video> elements.
5247
5247
*
5248
5248
* MDN
5249
5249
*/
@@ -5410,7 +5410,7 @@ object Event extends js.Object {
5410
5410
5411
5411
/**
5412
5412
* The ImageData interface represents the underlying pixel data of an area of a
5413
- * < canvas> element. It is created using creators on the CanvasRenderingContext2D
5413
+ * < canvas> element. It is created using creators on the CanvasRenderingContext2D
5414
5414
* object associated with the canvas createImageData() and getImageData()). It can
5415
5415
* also be used to set a part of the canvas (like with putImageData()).
5416
5416
*
@@ -5787,7 +5787,7 @@ object MediaError extends js.Object {
5787
5787
/**
5788
5788
* The Comment interface represents textual notations within markup; although it is
5789
5789
* generally not visually shown, such comments are available to be read in the source
5790
- * view. Comments are represented in HTML and XML as content between '< !--' and '--> '.
5790
+ * view. Comments are represented in HTML and XML as content between '< !--' and '--> '.
5791
5791
* In XML, the character sequence '--' cannot be used within a comment.
5792
5792
*
5793
5793
* MDN
@@ -6524,7 +6524,7 @@ object EventSource extends js.Object {
6524
6524
/**
6525
6525
* The ProgressEvent interface represents events measuring progress of an
6526
6526
* underlying process, like an HTTP request (for an XMLHttpRequest, or the loading of
6527
- * the underlying resource of an < img>, < audio>, < video>, < style> or < link> ).
6527
+ * the underlying resource of an < img>, < audio>, < video>, < style> or < link> ).
6528
6528
*
6529
6529
* MDN
6530
6530
*/
@@ -6572,7 +6572,7 @@ trait ProgressEvent extends Event {
6572
6572
6573
6573
/**
6574
6574
* An object of this type is returned by the files property of the HTML input element;
6575
- * this lets you access the list of files selected with the < input type="file">
6575
+ * this lets you access the list of files selected with the < input type="file">
6576
6576
* element. It's also used for a list of files dropped into web content when using the
6577
6577
* drag and drop API; see the DataTransfer object for details on this usage.
6578
6578
*
0 commit comments