Consistently use lowercase HTML tag names

Unlike HTML, XHTML is case-sensitive.
This commit is contained in:
Matthias Schiffer
2018-08-18 12:46:59 +02:00
parent 26cc0a3ded
commit 321166849b
15 changed files with 20 additions and 20 deletions

View File

@@ -57,7 +57,7 @@ class WebGLMapRenderer extends MapRenderer {
* @type {HTMLCanvasElement}
*/
this.canvas_ = /** @type {HTMLCanvasElement} */
(document.createElement('CANVAS'));
(document.createElement('canvas'));
this.canvas_.style.width = '100%';
this.canvas_.style.height = '100%';
this.canvas_.style.display = 'block';