File: /var/www/zaklada/html/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js
"use strict";
const internalQuerySelector = require("../selectors").querySelector;
const internalGetAttr = require("../attributes").getAttributeValue;
const URL = require("../../utils").URL;
exports.documentBaseURL = function (document) {
// https://html.spec.whatwg.org/multipage/infrastructure.html#document-base-url
const firstBase = internalQuerySelector(document, "base[href]");
const fallbackBaseURL = exports.fallbackBaseURL(document);
if (firstBase === null) {
return fallbackBaseURL;
}
return exports.frozenBaseURL(firstBase, fallbackBaseURL);
};
exports.fallbackBaseURL = function (document) {
// https://html.spec.whatwg.org/multipage/infrastructure.html#fallback-base-url
// Unimplemented: <iframe srcdoc>
if (document._URL === "about:blank" && document._defaultView &&
document._defaultView._parent !== document._defaultView) {
return module.exports.documentBaseURL(document._defaultView._parent._document);
}
return document._URL;
};
exports.frozenBaseURL = function (baseElement, fallbackBaseURL) {
// https://html.spec.whatwg.org/multipage/semantics.html#frozen-base-url
// The spec is eager (setting the frozen base URL when things change); we are lazy (getting it when we need to)
const baseHrefAttribute = internalGetAttr(baseElement, "href");
try {
return new URL(baseHrefAttribute, fallbackBaseURL).href;
} catch (e) {
return fallbackBaseURL;
}
};