From: <rb...@us...> - 2018-06-16 14:55:49
|
Revision: 15328 http://sourceforge.net/p/htmlunit/code/15328 Author: rbri Date: 2018-06-16 14:55:34 +0000 (Sat, 16 Jun 2018) Log Message: ----------- ff60 support (wip) Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesis.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisUtterance.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGAltGlyphElement.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGDocument.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGGeometryElement.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSeg.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcAbs.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegClosePath.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicAbs.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothAbs.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticSmoothAbs.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoHorizontalRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalAbs.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalRel.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoAbs.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoRel.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesis.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesis.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesis.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.speech; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; @@ -25,9 +25,10 @@ * A JavaScript object for {@code SpeechSynthesis}. * * @author Ahmed Ashour + * @author Ronald Brill */ @JsxClass(isJSObject = false, value = CHROME) -@JsxClass(FF52) +@JsxClass(FF) public class SpeechSynthesis extends EventTarget { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -14,7 +14,7 @@ */ package com.gargoylesoftware.htmlunit.javascript.host.speech; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -26,39 +26,39 @@ * * @author Ronald Brill */ -@JsxClass(FF52) +@JsxClass(FF) public class SpeechSynthesisErrorEvent extends SimpleScriptable { /** Constant. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final int ALT_MASK = 0x1; /** Constant. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final int CONTROL_MASK = 0x2; /** Constant. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final int SHIFT_MASK = 0x4; /** Constant. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final int META_MASK = 0x8; /** The first event phase: the capturing phase. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final short CAPTURING_PHASE = 1; /** The second event phase: at the event target. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final short AT_TARGET = 2; /** The third (and final) event phase: the bubbling phase. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final short BUBBLING_PHASE = 3; /** No event phase. */ - @JsxConstant(FF52) + @JsxConstant(FF) public static final short NONE = 0; /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisUtterance.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisUtterance.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisUtterance.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.speech; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; @@ -25,8 +25,9 @@ * A JavaScript object for {@code SpeechSynthesisUtterance}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({CHROME, FF52}) +@JsxClass({CHROME, FF}) public class SpeechSynthesisUtterance extends EventTarget { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -14,7 +14,7 @@ */ package com.gargoylesoftware.htmlunit.javascript.host.speech; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,7 +25,7 @@ * * @author Ronald Brill */ -@JsxClass(FF52) +@JsxClass(FF) public class SpeechSynthesisVoice extends SimpleScriptable { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGAltGlyphElement.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGAltGlyphElement.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGAltGlyphElement.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -14,11 +14,7 @@ */ package com.gargoylesoftware.htmlunit.javascript.host.svg; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF60; - -import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; -import com.gargoylesoftware.htmlunit.svg.SvgAltGlyph; /** * A JavaScript object for {@code SVGAltGlyphElement}. @@ -26,7 +22,6 @@ * @author Ahmed Ashour * @author Frank Danek */ -@JsxClass(domClass = SvgAltGlyph.class, value = FF60) public class SVGAltGlyphElement extends SVGTextPositioningElement { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGDocument.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGDocument.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGDocument.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -14,9 +14,6 @@ */ package com.gargoylesoftware.htmlunit.javascript.host.svg; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF60; - -import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; import com.gargoylesoftware.htmlunit.javascript.host.dom.Document; @@ -24,8 +21,8 @@ * A JavaScript object for {@code SVGDocument}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass(FF60) public class SVGDocument extends Document { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGGeometryElement.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGGeometryElement.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGGeometryElement.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -16,7 +16,8 @@ import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF60; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -27,9 +28,10 @@ * A JavaScript object for {@code SVGGeometryElement}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass(CHROME) -@JsxClass(isJSObject = false, value = {IE, FF, EDGE}) +@JsxClass({CHROME, FF60}) +@JsxClass(isJSObject = false, value = {IE, FF52, EDGE}) public class SVGGeometryElement extends SVGGraphicsElement { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSeg.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSeg.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSeg.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; @@ -27,8 +27,9 @@ * A JavaScript object for {@code SVGPathSeg}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSeg extends SimpleScriptable { /** The constant {@code PATHSEG_UNKNOWN}. */ @@ -95,7 +96,7 @@ /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSeg() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcAbs.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcAbs.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcAbs.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegArcAbs}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegArcAbs extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegArcAbs() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegArcRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegArcRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegArcRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegArcRel() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegClosePath.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegClosePath.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegClosePath.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegClosePath}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegClosePath extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegClosePath() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicAbs.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicAbs.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicAbs.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegCurvetoCubicAbs}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegCurvetoCubicAbs extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegCurvetoCubicAbs() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegCurvetoCubicRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegCurvetoCubicRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegCurvetoCubicRel() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothAbs.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothAbs.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothAbs.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegCurvetoCubicSmoothAbs}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegCurvetoCubicSmoothAbs() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoCubicSmoothRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegCurvetoCubicSmoothRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegCurvetoCubicSmoothRel() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -16,6 +16,7 @@ import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,8 +26,9 @@ * A JavaScript object for {@code SVGPathSegCurvetoQuadraticRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegCurvetoQuadraticRel extends SVGPathSeg { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticSmoothAbs.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticSmoothAbs.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegCurvetoQuadraticSmoothAbs.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -16,6 +16,7 @@ import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,8 +26,9 @@ * A JavaScript object for {@code SVGPathSegCurvetoQuadraticSmoothAbs}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg { /** Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoHorizontalRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoHorizontalRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoHorizontalRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegLinetoHorizontalRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegLinetoHorizontalRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegLinetoHorizontalRel() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegLinetoRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegLinetoRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegLinetoRel() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalAbs.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalAbs.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalAbs.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegLinetoVerticalAbs}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegLinetoVerticalAbs extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegLinetoVerticalAbs() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegLinetoVerticalRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegLinetoVerticalRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegLinetoVerticalRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegLinetoVerticalRel() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoAbs.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoAbs.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoAbs.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegMovetoAbs}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegMovetoAbs extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegMovetoAbs() { } Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoRel.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoRel.java 2018-06-16 13:07:30 UTC (rev 15327) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGPathSegMovetoRel.java 2018-06-16 14:55:34 UTC (rev 15328) @@ -15,7 +15,7 @@ package com.gargoylesoftware.htmlunit.javascript.host.svg; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE; import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; @@ -25,14 +25,15 @@ * A JavaScript object for {@code SVGPathSegMovetoRel}. * * @author Ahmed Ashour + * @author Ronald Brill */ -@JsxClass({FF, IE, EDGE}) +@JsxClass({FF52, IE, EDGE}) public class SVGPathSegMovetoRel extends SVGPathSeg { /** * Creates an instance. */ - @JsxConstructor({FF, EDGE}) + @JsxConstructor({FF52, EDGE}) public SVGPathSegMovetoRel() { } |