From: <rb...@us...> - 2017-05-10 18:20:42
|
Revision: 14428 http://sourceforge.net/p/htmlunit/code/14428 Author: rbri Date: 2017-05-10 18:20:40 +0000 (Wed, 10 May 2017) Log Message: ----------- ff52 expectations Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/configuration/JavaScriptConfiguration.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/HostClassNameTest.java Added Paths: ----------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLQuery.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSampler.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSync.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLTransformFeedback.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLVertexArrayObject.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/configuration/JavaScriptConfiguration.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/configuration/JavaScriptConfiguration.java 2017-05-10 13:58:45 UTC (rev 14427) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/configuration/JavaScriptConfiguration.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -112,12 +112,17 @@ import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLBuffer; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLFramebuffer; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLProgram; +import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLQuery; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLRenderbuffer; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLRenderingContext; +import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLSampler; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLShader; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLShaderPrecisionFormat; +import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLSync; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLTexture; +import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLTransformFeedback; import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLUniformLocation; +import com.gargoylesoftware.htmlunit.javascript.host.canvas.WebGLVertexArrayObject; import com.gargoylesoftware.htmlunit.javascript.host.canvas.ext.ANGLE_instanced_arrays; import com.gargoylesoftware.htmlunit.javascript.host.canvas.ext.EXT_texture_filter_anisotropic; import com.gargoylesoftware.htmlunit.javascript.host.canvas.ext.OES_element_index_uint; @@ -584,9 +589,14 @@ URLSearchParams.class, UserProximityEvent.class, ValidityState.class, VideoPlaybackQuality.class, VTTCue.class, WaveShaperNode.class, WeakMap.class, WeakSet.class, WebGL2RenderingContext.class, WEBGL_compressed_texture_s3tc.class, WEBGL_debug_renderer_info.class, WebGLActiveInfo.class, WebGLBuffer.class, - WebGLContextEvent.class, WebGLFramebuffer.class, WebGLProgram.class, WebGLRenderbuffer.class, - WebGLRenderingContext.class, WebGLShader.class, WebGLShaderPrecisionFormat.class, WebGLTexture.class, - WebGLUniformLocation.class, WebKitAnimationEvent.class, + WebGLContextEvent.class, WebGLFramebuffer.class, WebGLProgram.class, + WebGLQuery.class, + WebGLRenderbuffer.class, + WebGLRenderingContext.class, + WebGLSampler.class, WebGLShader.class, WebGLShaderPrecisionFormat.class, WebGLSync.class, + WebGLTransformFeedback.class, WebGLTexture.class, + WebGLUniformLocation.class, WebGLVertexArrayObject.class, + WebKitAnimationEvent.class, WebKitCSSMatrix.class, webkitMediaStream.class, WebKitMutationObserver.class, webkitRTCPeerConnection.class, webkitSpeechGrammar.class, webkitSpeechGrammarList.class, webkitSpeechRecognition.class, webkitSpeechRecognitionError.class, Added: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLQuery.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLQuery.java (rev 0) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLQuery.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2002-2017 Gargoyle Software Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.gargoylesoftware.htmlunit.javascript.host.canvas; + +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; + +import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; + +/** + * A JavaScript object for {@code WebGLQuery}. + * + * @author Ronald Brill + */ +@JsxClass({CHROME, FF52}) +public class WebGLQuery extends SimpleScriptable { + + /** + * Default constructor. + */ + @JsxConstructor + public WebGLQuery() { + } +} Property changes on: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLQuery.java ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSampler.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSampler.java (rev 0) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSampler.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2002-2017 Gargoyle Software Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.gargoylesoftware.htmlunit.javascript.host.canvas; + +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; + +import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; + +/** + * A JavaScript object for {@code WebGLSampler}. + * + * @author Ronald Brill + */ +@JsxClass({CHROME, FF52}) +public class WebGLSampler extends SimpleScriptable { + + /** + * Default constructor. + */ + @JsxConstructor + public WebGLSampler() { + } +} Property changes on: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSampler.java ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSync.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSync.java (rev 0) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSync.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2002-2017 Gargoyle Software Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.gargoylesoftware.htmlunit.javascript.host.canvas; + +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; + +import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; + +/** + * A JavaScript object for {@code WebGLSync}. + * + * @author Ronald Brill + */ +@JsxClass({CHROME, FF52}) +public class WebGLSync extends SimpleScriptable { + + /** + * Default constructor. + */ + @JsxConstructor + public WebGLSync() { + } +} Property changes on: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLSync.java ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLTransformFeedback.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLTransformFeedback.java (rev 0) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLTransformFeedback.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2002-2017 Gargoyle Software Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.gargoylesoftware.htmlunit.javascript.host.canvas; + +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; + +import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; + +/** + * A JavaScript object for {@code WebGLTransformFeedback}. + * + * @author Ronald Brill + */ +@JsxClass({CHROME, FF52}) +public class WebGLTransformFeedback extends SimpleScriptable { + + /** + * Default constructor. + */ + @JsxConstructor + public WebGLTransformFeedback() { + } +} Property changes on: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLTransformFeedback.java ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLVertexArrayObject.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLVertexArrayObject.java (rev 0) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLVertexArrayObject.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2002-2017 Gargoyle Software Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.gargoylesoftware.htmlunit.javascript.host.canvas; + +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME; +import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF52; + +import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass; +import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor; + +/** + * A JavaScript object for {@code WebGLVertexArrayObject}. + * + * @author Ronald Brill + */ +@JsxClass({CHROME, FF52}) +public class WebGLVertexArrayObject extends SimpleScriptable { + + /** + * Default constructor. + */ + @JsxConstructor + public WebGLVertexArrayObject() { + } +} Property changes on: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/canvas/WebGLVertexArrayObject.java ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/HostClassNameTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/HostClassNameTest.java 2017-05-10 13:58:45 UTC (rev 14427) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/HostClassNameTest.java 2017-05-10 18:20:40 UTC (rev 14428) @@ -16,7 +16,6 @@ import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.CHROME; import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.EDGE; -import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.FF52; import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.IE; import org.junit.Test; @@ -10352,7 +10351,6 @@ @Alerts(DEFAULT = "exception", CHROME = "function WebGLSync() { [native code] }", FF52 = "function WebGLSync() {\n [native code]\n}") - @NotYetImplemented({CHROME, FF52}) public void webGLSync() throws Exception { test("WebGLSync"); } @@ -10440,7 +10438,6 @@ @Alerts(DEFAULT = "exception", CHROME = "function WebGLTransformFeedback() { [native code] }", FF52 = "function WebGLTransformFeedback() {\n [native code]\n}") - @NotYetImplemented({CHROME, FF52}) public void webGLTransformFeedback() throws Exception { test("WebGLTransformFeedback"); } @@ -10452,7 +10449,6 @@ @Alerts(DEFAULT = "exception", CHROME = "function WebGLQuery() { [native code] }", FF52 = "function WebGLQuery() {\n [native code]\n}") - @NotYetImplemented({CHROME, FF52}) public void webGLQuery() throws Exception { test("WebGLQuery"); } @@ -10539,7 +10535,6 @@ @Alerts(DEFAULT = "exception", CHROME = "function WebGLVertexArrayObject() { [native code] }", FF52 = "function WebGLVertexArrayObject() {\n [native code]\n}") - @NotYetImplemented({CHROME, FF52}) public void webGLVertexArrayObject() throws Exception { test("WebGLVertexArrayObject"); } @@ -10570,7 +10565,6 @@ @Alerts(DEFAULT = "exception", CHROME = "function WebGLSampler() { [native code] }", FF52 = "function WebGLSampler() {\n [native code]\n}") - @NotYetImplemented({CHROME, FF52}) public void webGLSampler() throws Exception { test("WebGLSampler"); } |