@glimt/record 0.0.40 → 0.0.41

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.
@@ -517,6 +517,7 @@ function stringifyStylesheet$1(s2) {
517
517
  ).join("");
518
518
  return fixBrowserCompatibilityIssuesInCSS$1(stringifiedRules);
519
519
  } catch (error) {
520
+ console.log("stringifyStylesheet error:", error);
520
521
  return null;
521
522
  }
522
523
  }
@@ -1356,6 +1357,10 @@ function serializeElementNode(n2, options) {
1356
1357
  delete attributes.href;
1357
1358
  attributes._cssText = cssText;
1358
1359
  } else {
1360
+ console.log(
1361
+ "missing cssText on first passthrough for href:",
1362
+ n2.href
1363
+ );
1359
1364
  asyncStylesheetManager.registerClone({
1360
1365
  forElement: n2
1361
1366
  });
@@ -5561,6 +5566,7 @@ function stringifyStylesheet(s2) {
5561
5566
  ).join("");
5562
5567
  return fixBrowserCompatibilityIssuesInCSS(stringifiedRules);
5563
5568
  } catch (error) {
5569
+ console.log("stringifyStylesheet error:", error);
5564
5570
  return null;
5565
5571
  }
5566
5572
  }