UNPKG

615 BJavaScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * Removes the `width:0px` style from table pasted from Google Sheets.
7 *
8 * @param documentFragment element `data.content` obtained from clipboard
9 */
10export default function removeInvalidTableWidth(documentFragment, writer) {
11 for (const child of documentFragment.getChildren()) {
12 if (child.is('element', 'table') && child.getStyle('width') === '0px') {
13 writer.removeStyle('width', child);
14 }
15 }
16}