Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 460f8ad

Browse files
author
Je
committed
refactor: add style property for virtual dom element
1 parent 1a516d3 commit 460f8ad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vendor/deno-dom/element.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,10 @@ export class Element extends Node {
359359
return search;
360360
}
361361

362+
get style(): Record<string, string> {
363+
return {}
364+
}
365+
362366
getContext(type: string) {
363367
const isCanvas = this.tagName === "CANVAS"
364368
if (isCanvas && type === "2d") {

0 commit comments

Comments
 (0)