blob: 6294eaf650a5f92af30c9cc32c546dc09cc468cf [file] [log] [blame]
"use strict";
const conversions = require("webidl-conversions");
const utils = require("./utils.js");
const ScrollLogicalPosition = require("./ScrollLogicalPosition.js");
const ScrollOptions = require("./ScrollOptions.js");
exports._convertInherit = (obj, ret, { context = "The provided value" } = {}) => {
ScrollOptions._convertInherit(obj, ret, { context });
{
const key = "block";
let value = obj === undefined || obj === null ? undefined : obj[key];
if (value !== undefined) {
value = ScrollLogicalPosition.convert(value, { context: context + " has member 'block' that" });
ret[key] = value;
} else {
ret[key] = "start";
}
}
{
const key = "inline";
let value = obj === undefined || obj === null ? undefined : obj[key];
if (value !== undefined) {
value = ScrollLogicalPosition.convert(value, { context: context + " has member 'inline' that" });
ret[key] = value;
} else {
ret[key] = "nearest";
}
}
};
exports.convert = function convert(obj, { context = "The provided value" } = {}) {
if (obj !== undefined && typeof obj !== "object" && typeof obj !== "function") {
throw new TypeError(`${context} is not an object.`);
}
const ret = Object.create(null);
exports._convertInherit(obj, ret, { context });
return ret;
};