break;
case 'base' :
var headBase = document.getElementsByTagName('base');
- if (headBase.length) {
+ if (headBase.length > 0) {
headBase[0].setAttribute('href', element.getAttribute('href'));
- console.info('set base href:', headBase[0].href);
+ }
+ else {
+ headBase = document.createElement('base');
+ headBase.setAttribute('href', element.getAttribute('href'));
+ document.head.appendChild(headBase);
}
break;
}