Skip to content

Commit

Permalink
#668@trivial: Fixes found when reviewing.
Browse files Browse the repository at this point in the history
  • Loading branch information
capricorn86 committed May 23, 2023
1 parent 556ee53 commit 583af05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/happy-dom/src/nodes/html-element/HTMLElement.ts
Expand Up @@ -27,8 +27,8 @@ export default class HTMLElement extends Element implements IHTMLElement {
public readonly clientHeight = 0;
public readonly clientWidth = 0;

public _style: CSSStyleDeclaration = null;
public _dataset: Dataset = null;
private _style: CSSStyleDeclaration = null;
private _dataset: Dataset = null;

// Events
public oncopy: (event: Event) => void | null = null;
Expand Down

0 comments on commit 583af05

Please sign in to comment.