nehan
Version:
Html layout engine for paged-media written in Typescript
14 lines • 399 B
JavaScript
import { CssCascade, } from "./public-api";
export class TextCombineUpright {
constructor(value) {
this.value = value;
}
static load(element) {
let value = CssCascade.getValue(element, "text-combine-upright");
return new TextCombineUpright(value);
}
isNone() {
return this.value === "none";
}
}
//# sourceMappingURL=text-combine-upright.js.map