We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39c43a commit 85d8430Copy full SHA for 85d8430
ts/adaptors/HTMLAdaptor.ts
@@ -199,7 +199,6 @@ export class HTMLAdaptor<
199
extends AbstractDOMAdaptor<N, T, D>
200
implements MinHTMLAdaptor<N, T, D>
201
{
202
-
203
/**
204
* The font size to use when it can't be measured (e.g., the element
205
* isn't in the DOM).
@@ -597,7 +596,7 @@ export class HTMLAdaptor<
597
596
const style = this.window.getComputedStyle(node);
598
return parseFloat(
599
style.fontSize ||
600
- String((this.constructor as typeof HTMLAdaptor).DEFAULT_FONT_SIZE)
+ String((this.constructor as typeof HTMLAdaptor).DEFAULT_FONT_SIZE)
601
);
602
}
603
0 commit comments