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 45ec09f commit dcd893dCopy full SHA for dcd893d
1 file changed
src/main/java/org/htmlunit/javascript/host/svg/SVGSymbolElement.java
@@ -19,4 +19,22 @@
19
import org.htmlunit.svg.SvgSymbol;
20
21
/**
22
- * JavaScript host object for {@code SVGSymbolElement
+ * JavaScript host object for {@code SVGSymbolElement}.
23
+ *
24
+ * @author Ahmed Ashour
25
+ * @author Ronald Brill
26
27
+ * @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement">MDN Documentation</a>
28
+ */
29
+@JsxClass(domClass = SvgSymbol.class)
30
+public class SVGSymbolElement extends SVGGraphicsElement {
31
+
32
+ /**
33
+ * Creates an instance of this object.
34
35
+ @Override
36
+ @JsxConstructor
37
+ public void jsConstructor() {
38
+ super.jsConstructor();
39
+ }
40
+}
0 commit comments