All files / roosterjs-content-model-dom/lib/formatHandlers/list listStyleFormatHandler.ts

100% Statements 11/11
100% Branches 8/8
100% Functions 2/2
100% Lines 11/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30            1x   1056x 1056x   1056x 2x     1056x 96x       450x 1x     450x 100x        
import type { FormatHandler } from '../FormatHandler';
import type { ListStyleFormat } from 'roosterjs-content-model-types';
 
/**
 * @internal
 */
export const listStyleFormatHandler: FormatHandler<ListStyleFormat> = {
    parse: (format, element) => {
        const listStylePosition = element.style.listStylePosition;
        const listStyleType = element.style.listStyleType;
 
        if (listStylePosition) {
            format.listStylePosition = listStylePosition;
        }
 
        if (listStyleType) {
            format.listStyleType = listStyleType;
        }
    },
    apply: (format, element) => {
        if (format.listStylePosition) {
            element.style.listStylePosition = format.listStylePosition;
        }
 
        if (format.listStyleType) {
            element.style.listStyleType = format.listStyleType;
        }
    },
};