- From: Emilio Cobos Álvarez <web-platform-tests-notifications@w3.org>
- Date: Tue, 07 Jun 2016 11:16:18 GMT
- To: public-web-platform-tests-notifications@w3.org
I've checked the diff locally, and the changes look good to me (they're just quotation marks, and two more lines in `oes-vertex-array-object.html`): ```diff diff --git a/webgl/conformance-1.0.3/conformance/extensions/oes-vertex-array-object.html b/web gl/conformance-1.0.3/conformance/extensions/oes-vertex-array-object.html index e138382..9459b91 100644 --- a/webgl/conformance-1.0.3/conformance/extensions/oes-vertex-array-object.html +++ b/webgl/conformance-1.0.3/conformance/extensions/oes-vertex-array-object.html @@ -31,8 +31,8 @@ <meta charset="utf-8"> <title>WebGL OES_vertex_array_object Conformance Tests</title> <link rel="stylesheet" href="../../resources/js-test-style.css"/> -<script src=/resources/testharness.js></script> -<script src=/resources/testharnessreport.js></script> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> <script src="../../resources/js-test-pre.js"></script> <script src="../resources/webgl-test-utils.js"></script> <!-- comment in the script tag below to test through JS emulation of the extension. --> @@ -541,6 +541,8 @@ function runDeleteTests() { testFailed("buffer removed even though it is still attached to a VAO"); } } + + ext.bindVertexArrayOES(null); gl.deleteBuffer(positionBuffer); // Render with the deleted buffers. As they are referenced by VAOs they ``` View on GitHub: https://github.com/w3c/web-platform-tests/pull/3122#issuecomment-224250839
Received on Tuesday, 7 June 2016 11:16:28 UTC