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
+1 -1
View File
@@ -15,7 +15,7 @@ describe('ol.MapBrowserEventHandler', function() {
beforeEach(function() {
clock = sinon.useFakeTimers();
target = document.createElement('DIV');
target = document.createElement('div');
handler = new MapBrowserEventHandler(new Map({
target: target
}));