@arsedizioni/ars-utils 21.0.38 → 21.0.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1329,6 +1329,9 @@ class ClipperDocumentComponent extends ClipperDocumentManager {
1329
1329
  let f = document.getElementById('clipper-document-iframe');
1330
1330
  if (!f || !f.contentDocument || !f.contentDocument.body)
1331
1331
  return;
1332
+ console.log("1:" + f.innerHTML);
1333
+ console.log("2:" + f.contentDocument.body.innerHTML);
1334
+ console.log("3:" + f.contentWindow.document.body.innerHTML);
1332
1335
  const html = f.contentDocument.body.innerHTML;
1333
1336
  const htmlBlob = new Blob([html], { type: 'text/html' });
1334
1337
  const textBlob = new Blob([html], { type: 'text/plain' });