Merge pull request #991 from learykara/patch-3

Declare undeclared variables
This commit is contained in:
Josh Bruce 2018-01-05 17:55:15 -05:00 committed by GitHub
commit 99eee90c91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@
*/
;(function() {
'use strict';
/**
* Block-Level Grammar
@ -1144,8 +1145,8 @@ function resolveUrl(base, href) {
return base + href;
}
}
baseUrls = {};
originIndependentUrl = /^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;
var baseUrls = {};
var originIndependentUrl = /^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;
function noop() {}
noop.exec = noop;