diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2018-08-25 15:05:04 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-08-30 16:15:38 +0200 |
commit | 83e27e4167d3fc255708b7839a176cf7ef4ddff6 (patch) | |
tree | 6cdaae31b4b432b0eaaf17855e99766d959973ad | |
parent | 7f9d560f28aea0a303cd953070e8b00c2c92c8e7 (diff) | |
download | servo-83e27e4167d3fc255708b7839a176cf7ef4ddff6.tar.gz servo-83e27e4167d3fc255708b7839a176cf7ef4ddff6.zip |
Remove WebGLRenderingContext.STENCIL_INDEX
-rw-r--r-- | components/script/dom/webidls/WebGLRenderingContext.webidl | 3 | ||||
-rw-r--r-- | tests/wpt/webgl/meta/conformance/context/constants-and-properties.html.ini | 7 |
2 files changed, 2 insertions, 8 deletions
diff --git a/components/script/dom/webidls/WebGLRenderingContext.webidl b/components/script/dom/webidls/WebGLRenderingContext.webidl index d36154c7355..2ad85964e5a 100644 --- a/components/script/dom/webidls/WebGLRenderingContext.webidl +++ b/components/script/dom/webidls/WebGLRenderingContext.webidl @@ -421,7 +421,8 @@ interface WebGLRenderingContextBase const GLenum RGB5_A1 = 0x8057; const GLenum RGB565 = 0x8D62; const GLenum DEPTH_COMPONENT16 = 0x81A5; - const GLenum STENCIL_INDEX = 0x1901; + // https://github.com/KhronosGroup/WebGL/pull/2371 + // const GLenum STENCIL_INDEX = 0x1901; const GLenum STENCIL_INDEX8 = 0x8D48; const GLenum DEPTH_STENCIL = 0x84F9; diff --git a/tests/wpt/webgl/meta/conformance/context/constants-and-properties.html.ini b/tests/wpt/webgl/meta/conformance/context/constants-and-properties.html.ini deleted file mode 100644 index 49434267629..00000000000 --- a/tests/wpt/webgl/meta/conformance/context/constants-and-properties.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[constants-and-properties.html] - [WebGL test #2: Also found the following extra properties:] - expected: FAIL - - [WebGL test #3: STENCIL_INDEX] - expected: FAIL - |