Implemented the JFX HTML renderer

This commit is contained in:
Tinglyyy
2026-01-19 19:05:49 +01:00
parent 0e289f7913
commit 2bb9d522f3
10 changed files with 109 additions and 28 deletions

View File

@@ -21,7 +21,7 @@ public final class MainFrame extends BrowserFrame {
private Tab openTab;
@Getter
private DOMContainerPanel domContainerPanel;
private final DOMContainerPanel domContainerPanel;
public MainFrame() {
super(new TabButtonView());
@@ -38,6 +38,7 @@ public final class MainFrame extends BrowserFrame {
this.add(this.topBar, BorderLayout.NORTH);
this.domContainerPanel = new DOMContainerPanel();
this.add(this.domContainerPanel, BorderLayout.CENTER);
}
private void init() {