Open
Description
Clarification
: Is this code FOSS (Free/OpenSource) or promotional code?
Issue
: After load page (~5 seconds) equo-code
modifies the HTML being displayed and adds a banner. This behavior is not described anywhere; only a dual license like GPLv3 is indicated.
Transparency
: Would you be so kind as to document this or any other unspecified/hidden behavior in this code? Thanks.
Reference code used:
import com.equo.chromium.ChromiumBrowser;
import java.awt.BorderLayout;
import javax.swing.JFrame;
public class TestEquoSwing extends JFrame {
private TestEquoSwing() {
setDefaultCloseOperation(System.getProperty("os.name").toLowerCase().contains("mac")
? EXIT_ON_CLOSE : DISPOSE_ON_CLOSE);
ChromiumBrowser browser = ChromiumBrowser.swing(getContentPane(), BorderLayout.CENTER,
"https://github.com/chromiumembedded/java-cef");
setTitle("Test Equo Swing");
setSize(800, 600);
setVisible(true);
}
public static void main(String[] args) {
new TestEquoSwing();
}
}
Metadata
Metadata
Assignees
Labels
No labels