diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-03-24 00:18:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-24 00:18:28 -0400 |
commit | 72f326b22bfa9dfae30941883979fd9f3090d044 (patch) | |
tree | ff9899af648934f5a142bcc17397fe9c0969c6dd | |
parent | 5a432eaad33f36591f62c3d2671ffd9956be3594 (diff) | |
parent | a77d35b60c5e9b01f868daff510fbb7e44ca1bbc (diff) | |
download | servo-72f326b22bfa9dfae30941883979fd9f3090d044.tar.gz servo-72f326b22bfa9dfae30941883979fd9f3090d044.zip |
Auto merge of #20400 - servo:webgl, r=emilio
Implement HTMLCanvasElement.toDataURL for WebGL canvas (fixes #19147)
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20400)
<!-- Reviewable:end -->
186 files changed, 63 insertions, 1543 deletions
diff --git a/components/script/dom/htmlcanvaselement.rs b/components/script/dom/htmlcanvaselement.rs index c866664cbcf..b1bea124a7b 100644 --- a/components/script/dom/htmlcanvaselement.rs +++ b/components/script/dom/htmlcanvaselement.rs @@ -345,11 +345,22 @@ impl HTMLCanvasElementMethods for HTMLCanvasElement { Finite::wrap(self.Height() as f64))?; image_data.get_data_array() } + Some(CanvasContext::WebGL(ref context)) => { + match context.get_image_data(self.Width(), self.Height()) { + Some(data) => data, + None => return Ok("data:,".into()), + } + } + Some(CanvasContext::WebGL2(ref context)) => { + match context.base_context().get_image_data(self.Width(), self.Height()) { + Some(data) => data, + None => return Ok("data:,".into()), + } + } None => { // Each pixel is fully-transparent black. vec![0; (self.Width() * self.Height() * 4) as usize] } - _ => return Err(Error::NotSupported) // WebGL }; // Only handle image/png for now. diff --git a/components/script/dom/webglrenderingcontext.rs b/components/script/dom/webglrenderingcontext.rs index d9d993e5b21..204426f8063 100644 --- a/components/script/dom/webglrenderingcontext.rs +++ b/components/script/dom/webglrenderingcontext.rs @@ -57,6 +57,7 @@ use offscreen_gl_context::{GLContextAttributes, GLLimits}; use script_layout_interface::HTMLCanvasDataSource; use servo_config::prefs::PREFS; use std::cell::{Cell, Ref}; +use std::cmp; use std::iter::FromIterator; use std::ptr::NonNull; use webrender_api; @@ -1151,6 +1152,38 @@ impl WebGLRenderingContext { } } } + + // Used by HTMLCanvasElement.toDataURL + // + // This emits errors quite liberally, but the spec says that this operation + // can fail and that it is UB what happens in that case. + // + // https://www.khronos.org/registry/webgl/specs/latest/1.0/#2.2 + pub fn get_image_data(&self, mut width: u32, mut height: u32) -> Option<Vec<u8>> { + if !self.validate_framebuffer_complete() { + return None; + } + + if let Some((fb_width, fb_height)) = self.get_current_framebuffer_size() { + width = cmp::min(width, fb_width as u32); + height = cmp::min(height, fb_height as u32); + } else { + self.webgl_error(InvalidOperation); + return None; + } + + let (sender, receiver) = webgl_channel().unwrap(); + self.send_command(WebGLCommand::ReadPixels( + 0, + 0, + width as i32, + height as i32, + constants::RGBA, + constants::UNSIGNED_BYTE, + sender, + )); + Some(receiver.recv().unwrap()) + } } impl Drop for WebGLRenderingContext { diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/context/context-hidden-alpha.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/context/context-hidden-alpha.html.ini deleted file mode 100644 index 012afa743c2..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/context/context-hidden-alpha.html.ini +++ /dev/null @@ -1,12 +0,0 @@ -[context-hidden-alpha.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - - [WebGL test #1: gl.getParameter(gl.ALPHA_BITS) should be 0 (of type number). Was null (of type object).] - expected: FAIL - - [WebGL test #2: null should be non-null. Was null] - expected: FAIL - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec2.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec2.html.ini deleted file mode 100644 index 88a8c0b3586..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec2.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-bvec2.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec3.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec3.html.ini deleted file mode 100644 index 696078d164b..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec3.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-bvec3.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec4.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec4.html.ini deleted file mode 100644 index e3ec54664c1..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-bvec4.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-bvec4.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec2.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec2.html.ini deleted file mode 100644 index a44d0e31da6..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec2.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-ivec2.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec3.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec3.html.ini deleted file mode 100644 index 4928639fd12..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec3.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-ivec3.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec4.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec4.html.ini deleted file mode 100644 index 0ba97369f71..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-ivec4.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-ivec4.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat2.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat2.html.ini deleted file mode 100644 index 4a78b763173..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat2.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-mat2.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat3.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat3.html.ini deleted file mode 100644 index afb20dbcc12..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat3.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-mat3.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat4.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat4.html.ini deleted file mode 100644 index f6ce8a0d3b1..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-mat4.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-mat4.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec2.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec2.html.ini deleted file mode 100644 index 6c25929d4ab..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec2.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-vec2.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec3.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec3.html.ini deleted file mode 100644 index 9295f056392..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec3.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-vec3.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec4.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec4.html.ini deleted file mode 100644 index be323d79413..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/constructors/glsl-construct-vec4.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-construct-vec4.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-abs.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-abs.html.ini deleted file mode 100644 index 93241f26a13..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-abs.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-abs.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-acos.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-acos.html.ini deleted file mode 100644 index 88c1a43eb10..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-acos.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-acos.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-asin.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-asin.html.ini deleted file mode 100644 index d9f5962ac67..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-asin.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-asin.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-atan-xy.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-atan-xy.html.ini deleted file mode 100644 index 0607e130e0d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-atan-xy.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-atan-xy.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-atan.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-atan.html.ini deleted file mode 100644 index 92ace6216aa..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-atan.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-atan.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-ceil.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-ceil.html.ini deleted file mode 100644 index 60949bc4495..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-ceil.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-ceil.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-clamp-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-clamp-float.html.ini deleted file mode 100644 index 9810d947d38..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-clamp-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-clamp-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-clamp-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-clamp-gentype.html.ini deleted file mode 100644 index 3559bce3bcd..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-clamp-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-clamp-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-cos.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-cos.html.ini deleted file mode 100644 index 387296d1f5c..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-cos.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-cos.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-cross.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-cross.html.ini deleted file mode 100644 index 59e7bd05613..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-cross.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-cross.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-distance.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-distance.html.ini deleted file mode 100644 index 0699ec04cdd..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-distance.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-distance.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-dot.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-dot.html.ini deleted file mode 100644 index 2f1e2c0fc93..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-dot.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-dot.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-faceforward.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-faceforward.html.ini deleted file mode 100644 index 01393378d9a..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-faceforward.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-faceforward.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-floor.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-floor.html.ini deleted file mode 100644 index 0760c29b822..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-floor.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-floor.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-fract.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-fract.html.ini deleted file mode 100644 index 26605d745c0..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-fract.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-fract.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-length.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-length.html.ini deleted file mode 100644 index b93f2a08203..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-length.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-length.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-max-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-max-float.html.ini deleted file mode 100644 index b6f9b8f122f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-max-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-max-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-max-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-max-gentype.html.ini deleted file mode 100644 index 5c398e89e9f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-max-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-max-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-min-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-min-float.html.ini deleted file mode 100644 index e19cba7908b..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-min-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-min-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-min-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-min-gentype.html.ini deleted file mode 100644 index f6d9483a1c4..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-min-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-min-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mix-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mix-float.html.ini deleted file mode 100644 index 33c04e745cf..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mix-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-mix-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mix-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mix-gentype.html.ini deleted file mode 100644 index b9467eda17a..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mix-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-mix-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mod-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mod-float.html.ini deleted file mode 100644 index 7022b376e98..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mod-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-mod-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mod-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mod-gentype.html.ini deleted file mode 100644 index 50898dfef40..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-mod-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-mod-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-normalize.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-normalize.html.ini deleted file mode 100644 index 83b26636ef9..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-normalize.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-normalize.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-reflect.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-reflect.html.ini deleted file mode 100644 index cb99fcf78f6..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-reflect.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-reflect.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-sign.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-sign.html.ini deleted file mode 100644 index 0c5cee9e435..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-sign.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-sign.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-sin.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-sin.html.ini deleted file mode 100644 index 61985bb538e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-sin.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-sin.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-smoothstep-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-smoothstep-float.html.ini deleted file mode 100644 index 89451efba22..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-smoothstep-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-smoothstep-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-smoothstep-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-smoothstep-gentype.html.ini deleted file mode 100644 index a10653c2177..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-smoothstep-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-smoothstep-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-step-float.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-step-float.html.ini deleted file mode 100644 index 08139f7347e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-step-float.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-step-float.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-step-gentype.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-step-gentype.html.ini deleted file mode 100644 index 18cf2d70027..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function-step-gentype.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function-step-gentype.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function.html.ini deleted file mode 100644 index 4f95e9dce15..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/functions/glsl-function.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-function.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/matrices/glsl-mat3-construction.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/matrices/glsl-mat3-construction.html.ini deleted file mode 100644 index f121a17858d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/matrices/glsl-mat3-construction.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-mat3-construction.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/matrices/glsl-mat4-to-mat3.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/matrices/glsl-mat4-to-mat3.html.ini deleted file mode 100644 index 95e585cfad7..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/matrices/glsl-mat4-to-mat3.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[glsl-mat4-to-mat3.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/expression-list-in-declarator-initializer.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/expression-list-in-declarator-initializer.html.ini deleted file mode 100644 index ae09bb70c91..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/expression-list-in-declarator-initializer.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[expression-list-in-declarator-initializer.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-comma-assignment.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-comma-assignment.html.ini deleted file mode 100644 index b5e517479df..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-comma-assignment.html.ini +++ /dev/null @@ -1,12 +0,0 @@ -[shader-with-comma-assignment.html] - type: testharness - expected: ERROR - [WebGL test #0: [unexpected vertex shader compile status\] (expected: true) fragment shader with comma assignment should succeed] - expected: FAIL - - [WebGL test #1: [unexpected fragment shader compile status\] (expected: true) fragment shader with comma assignment should succeed] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-comma-conditional-assignment.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-comma-conditional-assignment.html.ini deleted file mode 100644 index d66b3f8d809..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-comma-conditional-assignment.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[shader-with-comma-conditional-assignment.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-non-reserved-words.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-non-reserved-words.html.ini index c508ae3ae71..d8d7a1897d8 100644 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-non-reserved-words.html.ini +++ b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/shader-with-non-reserved-words.html.ini @@ -1,146 +1,6 @@ [shader-with-non-reserved-words.html] type: testharness - [WebGL test #1696: shader with: 'dmat2' failed to compile] - expected: FAIL - - [WebGL test #1698: shader with: 'dmat2' failed to compile] - expected: FAIL - - [WebGL test #1700: shader with: 'dmat2' failed to compile] - expected: FAIL - - [WebGL test #1702: shader with: 'dmat2' failed to compile] - expected: FAIL - - [WebGL test #1704: shader with: 'dmat3' failed to compile] - expected: FAIL - - [WebGL test #1706: shader with: 'dmat3' failed to compile] - expected: FAIL - - [WebGL test #1708: shader with: 'dmat3' failed to compile] - expected: FAIL - - [WebGL test #1710: shader with: 'dmat3' failed to compile] - expected: FAIL - - [WebGL test #1712: shader with: 'dmat4' failed to compile] - expected: FAIL - - [WebGL test #1714: shader with: 'dmat4' failed to compile] - expected: FAIL - - [WebGL test #1716: shader with: 'dmat4' failed to compile] - expected: FAIL - - [WebGL test #1718: shader with: 'dmat4' failed to compile] - expected: FAIL - - [WebGL test #1744: shader with: 'dmat2x2' failed to compile] - expected: FAIL - - [WebGL test #1746: shader with: 'dmat2x2' failed to compile] - expected: FAIL - - [WebGL test #1748: shader with: 'dmat2x2' failed to compile] - expected: FAIL - - [WebGL test #1750: shader with: 'dmat2x2' failed to compile] - expected: FAIL - - [WebGL test #1752: shader with: 'dmat2x3' failed to compile] - expected: FAIL - - [WebGL test #1754: shader with: 'dmat2x3' failed to compile] - expected: FAIL - - [WebGL test #1756: shader with: 'dmat2x3' failed to compile] - expected: FAIL - - [WebGL test #1758: shader with: 'dmat2x3' failed to compile] - expected: FAIL - - [WebGL test #1760: shader with: 'dmat2x4' failed to compile] - expected: FAIL - - [WebGL test #1762: shader with: 'dmat2x4' failed to compile] - expected: FAIL - - [WebGL test #1764: shader with: 'dmat2x4' failed to compile] - expected: FAIL - - [WebGL test #1766: shader with: 'dmat2x4' failed to compile] - expected: FAIL - - [WebGL test #1792: shader with: 'dmat3x2' failed to compile] - expected: FAIL - - [WebGL test #1794: shader with: 'dmat3x2' failed to compile] - expected: FAIL - - [WebGL test #1796: shader with: 'dmat3x2' failed to compile] - expected: FAIL - - [WebGL test #1798: shader with: 'dmat3x2' failed to compile] - expected: FAIL - - [WebGL test #1800: shader with: 'dmat3x3' failed to compile] - expected: FAIL - - [WebGL test #1802: shader with: 'dmat3x3' failed to compile] - expected: FAIL - - [WebGL test #1804: shader with: 'dmat3x3' failed to compile] - expected: FAIL - - [WebGL test #1806: shader with: 'dmat3x3' failed to compile] - expected: FAIL - - [WebGL test #1808: shader with: 'dmat3x4' failed to compile] - expected: FAIL - - [WebGL test #1810: shader with: 'dmat3x4' failed to compile] - expected: FAIL - - [WebGL test #1812: shader with: 'dmat3x4' failed to compile] - expected: FAIL - - [WebGL test #1814: shader with: 'dmat3x4' failed to compile] - expected: FAIL - - [WebGL test #1840: shader with: 'dmat4x2' failed to compile] - expected: FAIL - - [WebGL test #1842: shader with: 'dmat4x2' failed to compile] - expected: FAIL - - [WebGL test #1844: shader with: 'dmat4x2' failed to compile] - expected: FAIL - - [WebGL test #1846: shader with: 'dmat4x2' failed to compile] - expected: FAIL - - [WebGL test #1848: shader with: 'dmat4x3' failed to compile] - expected: FAIL - - [WebGL test #1850: shader with: 'dmat4x3' failed to compile] - expected: FAIL - - [WebGL test #1852: shader with: 'dmat4x3' failed to compile] - expected: FAIL - - [WebGL test #1854: shader with: 'dmat4x3' failed to compile] - expected: FAIL - - [WebGL test #1856: shader with: 'dmat4x4' failed to compile] - expected: FAIL - - [WebGL test #1858: shader with: 'dmat4x4' failed to compile] - expected: FAIL - - [WebGL test #1860: shader with: 'dmat4x4' failed to compile] - expected: FAIL - - [WebGL test #1862: shader with: 'dmat4x4' failed to compile] - expected: FAIL + expected: TIMEOUT + [Overall test] + expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-equals.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-equals.html.ini deleted file mode 100644 index 0a58d453268..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-equals.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[struct-equals.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-mixed-array-declarators.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-mixed-array-declarators.html.ini deleted file mode 100644 index 073efd3da42..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-mixed-array-declarators.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[struct-mixed-array-declarators.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-nesting-of-variable-names.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-nesting-of-variable-names.html.ini deleted file mode 100644 index 054a7043ef9..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-nesting-of-variable-names.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[struct-nesting-of-variable-names.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-specifiers-in-uniforms.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-specifiers-in-uniforms.html.ini deleted file mode 100644 index d00531a9885..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/struct-specifiers-in-uniforms.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[struct-specifiers-in-uniforms.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/ternary-operators-in-global-initializers.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/ternary-operators-in-global-initializers.html.ini deleted file mode 100644 index 8ff016ad986..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/ternary-operators-in-global-initializers.html.ini +++ /dev/null @@ -1,12 +0,0 @@ -[ternary-operators-in-global-initializers.html] - type: testharness - expected: ERROR - [WebGL test #0: [unexpected fragment shader compile status\] (expected: true) float] - expected: FAIL - - [WebGL test #1: [unexpected fragment shader compile status\] (expected: true) vec2] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/ternary-operators-in-initializers.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/ternary-operators-in-initializers.html.ini deleted file mode 100644 index 6400aafa9d8..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/glsl/misc/ternary-operators-in-initializers.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[ternary-operators-in-initializers.html] - type: testharness - expected: ERROR - [WebGL test #0: [unexpected fragment shader compile status\] (expected: true) Ternary operator in integer initalization] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/abs/abs_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/abs/abs_001_to_006.html.ini deleted file mode 100644 index 991e156f928..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/abs/abs_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[abs_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: abs_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/acos/acos_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/acos/acos_001_to_006.html.ini index 939910f1c1b..86a561af11b 100644 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/acos/acos_001_to_006.html.ini +++ b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/acos/acos_001_to_006.html.ini @@ -1,9 +1,2 @@ [acos_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: acos_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - + expected: TIMEOUT diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/all/all_001_to_004.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/all/all_001_to_004.html.ini deleted file mode 100644 index acffbf3016b..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/all/all_001_to_004.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[all_001_to_004.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: all_001_to_004.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/any/any_001_to_004.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/any/any_001_to_004.html.ini deleted file mode 100644 index d09a1d94e36..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/any/any_001_to_004.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[any_001_to_004.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: any_001_to_004.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini deleted file mode 100644 index 25ecb8e139d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[array_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: array_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/asin/asin_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/asin/asin_001_to_006.html.ini index 0d292576fa3..065c24703a1 100644 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/asin/asin_001_to_006.html.ini +++ b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/asin/asin_001_to_006.html.ini @@ -1,9 +1,2 @@ [asin_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: asin_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - + expected: TIMEOUT diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/atan/atan_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/atan/atan_001_to_008.html.ini deleted file mode 100644 index c7027a0105e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/atan/atan_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[atan_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: atan_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/atan/atan_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/atan/atan_009_to_012.html.ini deleted file mode 100644 index b9ddf6f5296..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/atan/atan_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[atan_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: atan_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini deleted file mode 100644 index d214b0ca531..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[biConstants_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: biConstants_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini deleted file mode 100644 index e34d61f3adc..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[biConstants_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: biConstants_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini deleted file mode 100644 index 5717ac47d9a..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[biuDepthRange_001_to_002.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: biuDepthRange_001_to_002.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/ceil/ceil_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/ceil/ceil_001_to_006.html.ini deleted file mode 100644 index 2a5ca589aad..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/ceil/ceil_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[ceil_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: ceil_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/clamp/clamp_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/clamp/clamp_001_to_006.html.ini deleted file mode 100644 index dcf4ec23f80..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/clamp/clamp_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[clamp_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: clamp_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini deleted file mode 100644 index 6b1750cfd72..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[control_flow_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: control_flow_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini deleted file mode 100644 index 0e8e3b3b1ea..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[control_flow_009_to_010.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: control_flow_009_to_010.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/cos/cos_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/cos/cos_001_to_006.html.ini deleted file mode 100644 index 0d4560efeca..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/cos/cos_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[cos_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: cos_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/cross/cross_001_to_002.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/cross/cross_001_to_002.html.ini deleted file mode 100644 index 7f59ec33c9b..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/cross/cross_001_to_002.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[cross_001_to_002.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: cross_001_to_002.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/default/default_001_to_001.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/default/default_001_to_001.html.ini deleted file mode 100644 index 61ff742b902..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/default/default_001_to_001.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[default_001_to_001.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: default_001_to_001.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/degrees/degrees_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/degrees/degrees_001_to_006.html.ini deleted file mode 100644 index aacef53656e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/degrees/degrees_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[degrees_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: degrees_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini deleted file mode 100644 index e0dbd874347..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[discard_001_to_002.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: discard_001_to_002.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/distance/distance_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/distance/distance_001_to_006.html.ini deleted file mode 100644 index 2ca71664454..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/distance/distance_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[distance_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: distance_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/dot/dot_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/dot/dot_001_to_006.html.ini deleted file mode 100644 index 57962188759..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/dot/dot_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[dot_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: dot_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/equal/equal_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/equal/equal_001_to_008.html.ini deleted file mode 100644 index 03bb46b5056..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/equal/equal_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[equal_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: equal_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/equal/equal_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/equal/equal_009_to_012.html.ini deleted file mode 100644 index 0c5afbe9477..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/equal/equal_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[equal_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: equal_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp/exp_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp/exp_001_to_008.html.ini deleted file mode 100644 index 6a6c2f47a3d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp/exp_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[exp_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: exp_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp/exp_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp/exp_009_to_012.html.ini deleted file mode 100644 index 0b407e8700d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp/exp_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[exp_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: exp_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp2/exp2_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp2/exp2_001_to_008.html.ini deleted file mode 100644 index 3cf484ada35..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp2/exp2_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[exp2_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: exp2_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp2/exp2_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp2/exp2_009_to_012.html.ini deleted file mode 100644 index 80aa3ac40ab..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/exp2/exp2_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[exp2_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: exp2_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/faceforward/faceforward_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/faceforward/faceforward_001_to_006.html.ini deleted file mode 100644 index b7665786180..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/faceforward/faceforward_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[faceforward_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: faceforward_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/floor/floor_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/floor/floor_001_to_006.html.ini deleted file mode 100644 index 3fe704417b3..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/floor/floor_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[floor_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: floor_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/fract/fract_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/fract/fract_001_to_006.html.ini deleted file mode 100644 index 2d89e08f05f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/fract/fract_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[fract_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: fract_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_001_to_008.html.ini deleted file mode 100644 index e8112006ae6..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_001_to_008.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_001_to_008.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_009_to_016.html.ini deleted file mode 100644 index cf06738f1e3..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_009_to_016.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_009_to_016.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_017_to_024.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_017_to_024.html.ini deleted file mode 100644 index b5f3064fb27..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_017_to_024.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_017_to_024.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_033_to_040.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_033_to_040.html.ini deleted file mode 100644 index 6d2774c8b7e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_033_to_040.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_033_to_040.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_041_to_048.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_041_to_048.html.ini deleted file mode 100644 index 4719ab04f6a..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_041_to_048.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_041_to_048.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_057_to_064.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_057_to_064.html.ini deleted file mode 100644 index b5bf115bbcd..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_057_to_064.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_057_to_064.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_065_to_072.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_065_to_072.html.ini deleted file mode 100644 index 82cc36cd58a..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_065_to_072.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_065_to_072.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_073_to_080.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_073_to_080.html.ini deleted file mode 100644 index 7bfc8a50afb..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_073_to_080.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_073_to_080.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_081_to_088.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_081_to_088.html.ini deleted file mode 100644 index b39a8bd7539..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_081_to_088.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_081_to_088.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_089_to_096.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_089_to_096.html.ini deleted file mode 100644 index d4645c01f3b..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_089_to_096.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_089_to_096.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_097_to_104.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_097_to_104.html.ini deleted file mode 100644 index 23d2fa82061..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_097_to_104.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_097_to_104.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_105_to_112.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_105_to_112.html.ini deleted file mode 100644 index 73aa6393621..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_105_to_112.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_105_to_112.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_113_to_120.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_113_to_120.html.ini deleted file mode 100644 index 868c2f75da0..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_113_to_120.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_113_to_120.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_121_to_126.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_121_to_126.html.ini deleted file mode 100644 index b56e903f5c7..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/functions/functions_121_to_126.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[functions_121_to_126.html] - type: testharness - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html.ini deleted file mode 100644 index 78ccd712f0d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[gl_FragCoord_001_to_003.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: gl_FragCoord_001_to_003.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html.ini deleted file mode 100644 index 643f8efc548..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[gl_FrontFacing_001_to_001.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: gl_FrontFacing_001_to_001.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html.ini deleted file mode 100644 index d4f5b18aaff..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[greaterThan_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: greaterThan_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html.ini deleted file mode 100644 index c0829c9e0ad..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[greaterThanEqual_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: greaterThanEqual_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html.ini deleted file mode 100644 index 450ca50d5a3..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[inversesqrt_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: inversesqrt_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/length/length_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/length/length_001_to_006.html.ini deleted file mode 100644 index 8176f9f8529..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/length/length_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[length_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: length_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/lessThan/lessThan_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/lessThan/lessThan_001_to_008.html.ini deleted file mode 100644 index 9289af4daa9..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/lessThan/lessThan_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[lessThan_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: lessThan_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html.ini deleted file mode 100644 index c183c8f0b96..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[lessThanEqual_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: lessThanEqual_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_001_to_008.html.ini index b372812e6dd..0bcf8268f38 100644 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_001_to_008.html.ini +++ b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_001_to_008.html.ini @@ -1,9 +1,5 @@ [log_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: log_001_to_008.html] - expected: FAIL - + expected: TIMEOUT [Overall test] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_009_to_012.html.ini deleted file mode 100644 index 7c81898b942..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log/log_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[log_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: log_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_001_to_008.html.ini index f65c1dc80f6..579708b48b2 100644 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_001_to_008.html.ini +++ b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_001_to_008.html.ini @@ -1,9 +1,5 @@ [log2_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: log2_001_to_008.html] - expected: FAIL - + expected: TIMEOUT [Overall test] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_009_to_012.html.ini deleted file mode 100644 index 00de46eef34..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/log2/log2_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[log2_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: log2_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini deleted file mode 100644 index 8f8aa834907..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini deleted file mode 100644 index 0b0bb59cdea..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini deleted file mode 100644 index 728a9c84d6e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat_017_to_024.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat_017_to_024.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini deleted file mode 100644 index 4aaad2d5851..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat_025_to_032.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat_025_to_032.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini deleted file mode 100644 index e12b8cbd7b2..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat_033_to_040.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat_033_to_040.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini deleted file mode 100644 index 08f72c5b14d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat_041_to_046.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat_041_to_046.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini deleted file mode 100644 index 886c8cee8dd..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mat3_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mat3_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html.ini deleted file mode 100644 index 7fb01b76836..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[matrixCompMult_001_to_004.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: matrixCompMult_001_to_004.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/max/max_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/max/max_001_to_006.html.ini deleted file mode 100644 index c089f89a0a8..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/max/max_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[max_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: max_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/min/min_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/min/min_001_to_006.html.ini deleted file mode 100644 index 399fc5e9b0f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/min/min_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[min_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: min_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mix/mix_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mix/mix_001_to_006.html.ini deleted file mode 100644 index 7bbae35964c..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mix/mix_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mix_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mix_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mod/mod_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mod/mod_001_to_008.html.ini deleted file mode 100644 index 6b88e1dd009..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/mod/mod_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[mod_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: mod_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/normalize/normalize_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/normalize/normalize_001_to_006.html.ini deleted file mode 100644 index 46b02c289e1..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/normalize/normalize_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[normalize_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: normalize_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/not/not_001_to_004.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/not/not_001_to_004.html.ini deleted file mode 100644 index 72d68a305a7..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/not/not_001_to_004.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[not_001_to_004.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: not_001_to_004.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/notEqual/notEqual_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/notEqual/notEqual_001_to_008.html.ini deleted file mode 100644 index eee2353635d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/notEqual/notEqual_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[notEqual_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: notEqual_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/notEqual/notEqual_009_to_012.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/notEqual/notEqual_009_to_012.html.ini deleted file mode 100644 index 1d858e20d6f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/notEqual/notEqual_009_to_012.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[notEqual_009_to_012.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: notEqual_009_to_012.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini deleted file mode 100644 index 2c7e690cac4..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[operators_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: operators_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini deleted file mode 100644 index 86820f04f33..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[operators_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: operators_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini deleted file mode 100644 index 09d3f849088..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[operators_017_to_024.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: operators_017_to_024.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini deleted file mode 100644 index e9de65f960e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[operators_025_to_026.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: operators_025_to_026.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_001_to_008.html.ini deleted file mode 100644 index 01dd0158385..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[pow_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: pow_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_009_to_016.html.ini deleted file mode 100644 index 55684a86cff..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[pow_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: pow_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_017_to_024.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_017_to_024.html.ini deleted file mode 100644 index e0e26df362d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/pow/pow_017_to_024.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[pow_017_to_024.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: pow_017_to_024.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/radians/radians_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/radians/radians_001_to_006.html.ini deleted file mode 100644 index c3811e3eeab..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/radians/radians_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[radians_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: radians_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/reflect/reflect_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/reflect/reflect_001_to_006.html.ini deleted file mode 100644 index f728177114f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/reflect/reflect_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[reflect_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: reflect_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/refract/refract_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/refract/refract_001_to_006.html.ini deleted file mode 100644 index 0f31e5f06ba..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/refract/refract_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[refract_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: refract_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sign/sign_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sign/sign_001_to_006.html.ini deleted file mode 100644 index 1bc5d46cabe..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sign/sign_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[sign_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: sign_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sin/sin_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sin/sin_001_to_006.html.ini deleted file mode 100644 index 440663f97be..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sin/sin_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[sin_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: sin_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html.ini deleted file mode 100644 index ed56c5f75f4..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[smoothstep_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: smoothstep_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sqrt/sqrt_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sqrt/sqrt_001_to_006.html.ini deleted file mode 100644 index 1b06e03cfdd..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/sqrt/sqrt_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[sqrt_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: sqrt_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/step/step_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/step/step_001_to_006.html.ini deleted file mode 100644 index e9a3a5267a4..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/step/step_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[step_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: step_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini deleted file mode 100644 index 867ebd35e8f..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini deleted file mode 100644 index 7ac9f618c43..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini deleted file mode 100644 index dcbc45fc798..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_017_to_024.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_017_to_024.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini deleted file mode 100644 index 459fbcb356e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_025_to_032.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_025_to_032.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini deleted file mode 100644 index ab2a830136b..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_033_to_040.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_033_to_040.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini deleted file mode 100644 index 36f905582cf..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_041_to_048.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_041_to_048.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini deleted file mode 100644 index 568cac3d864..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[struct_049_to_056.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: struct_049_to_056.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html.ini deleted file mode 100644 index 26448587654..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html.ini deleted file mode 100644 index b3cbdda6f25..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html.ini deleted file mode 100644 index f1a17ff0a83..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_017_to_024.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_017_to_024.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html.ini deleted file mode 100644 index b93a1af2ebc..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_025_to_032.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_025_to_032.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html.ini deleted file mode 100644 index 158c52433e3..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_033_to_040.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_033_to_040.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html.ini deleted file mode 100644 index d9d19cab206..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_041_to_048.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_041_to_048.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html.ini deleted file mode 100644 index 34c0c72fce0..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_049_to_056.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_049_to_056.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html.ini deleted file mode 100644 index 6f76695cbf7..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_057_to_064.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_057_to_064.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html.ini deleted file mode 100644 index 814126f23b6..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_065_to_072.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_065_to_072.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html.ini deleted file mode 100644 index eddaa83fb8a..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_073_to_080.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_073_to_080.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html.ini deleted file mode 100644 index ca0d202c379..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_081_to_088.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_081_to_088.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html.ini deleted file mode 100644 index 8fda382bd99..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_089_to_096.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_089_to_096.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html.ini deleted file mode 100644 index ed1287b4f40..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_097_to_104.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_097_to_104.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html.ini deleted file mode 100644 index 596c2b6c26c..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_105_to_112.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_105_to_112.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html.ini deleted file mode 100644 index 0ecc54b5575..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[swizzlers_113_to_120.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: swizzlers_113_to_120.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/tan/tan_001_to_006.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/tan/tan_001_to_006.html.ini deleted file mode 100644 index 23bfbc539ef..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/tan/tan_001_to_006.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[tan_001_to_006.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: tan_001_to_006.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini deleted file mode 100644 index d969967fe50..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[vec_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: vec_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini deleted file mode 100644 index b22ea568647..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[vec_009_to_016.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: vec_009_to_016.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini deleted file mode 100644 index f2211b359d7..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[vec_017_to_018.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: vec_017_to_018.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec3/vec3_001_to_008.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec3/vec3_001_to_008.html.ini deleted file mode 100644 index 5779234d80d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-1.0.3/conformance/ogles/GL/vec3/vec3_001_to_008.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[vec3_001_to_008.html] - type: testharness - expected: ERROR - [WebGL GLSL conformance test: vec3_001_to_008.html] - expected: FAIL - - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/extensions/promoted-extensions-in-shaders.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/extensions/promoted-extensions-in-shaders.html.ini deleted file mode 100644 index d90fec40a3c..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/extensions/promoted-extensions-in-shaders.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[promoted-extensions-in-shaders.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-as-return-value.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-as-return-value.html.ini deleted file mode 100644 index c37f3cb9639..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-as-return-value.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[array-as-return-value.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-assign.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-assign.html.ini deleted file mode 100644 index 0f0efe82c19..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-assign.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[array-assign.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-complex-indexing.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-complex-indexing.html.ini deleted file mode 100644 index ada749d71c9..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-complex-indexing.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[array-complex-indexing.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-element-increment.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-element-increment.html.ini deleted file mode 100644 index 65cc8af2837..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-element-increment.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[array-element-increment.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-equality.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-equality.html.ini deleted file mode 100644 index daf23e04a8d..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-equality.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[array-equality.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-in-complex-expression.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-in-complex-expression.html.ini deleted file mode 100644 index 951756d4252..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/array-in-complex-expression.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[array-in-complex-expression.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/const-array-init.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/const-array-init.html.ini deleted file mode 100644 index 3760319fff1..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/const-array-init.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[const-array-init.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/tricky-loop-conditions.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/tricky-loop-conditions.html.ini index 914335ea0d7..f9d2a553a4b 100644 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/tricky-loop-conditions.html.ini +++ b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/tricky-loop-conditions.html.ini @@ -1,5 +1,13 @@ [tricky-loop-conditions.html] - expected: ERROR - [Overall test] - expected: NOTRUN + [WebGL test #12: [unexpected fragment shader compile status\] (expected: true) Test indexing an array constructor inside a sequence operator: bool(c = (func(), (int[2\](c + 1, c + 2))[1\])) inside a for loop condition] + expected: FAIL + + [WebGL test #13: [unexpected fragment shader compile status\] (expected: true) Test indexing an array constructor inside a sequence operator: bool(c = (func(), (int[2\](c + 1, c + 2))[1\])) inside a while loop condition] + expected: FAIL + + [WebGL test #14: [unexpected fragment shader compile status\] (expected: true) Test indexing an array constructor inside a sequence operator: bool(c = (func(), (int[2\](c + 1, c + 2))[1\])) inside a do-while loop condition] + expected: FAIL + + [WebGL test #15: [unexpected fragment shader compile status\] (expected: true) Test indexing an array constructor inside a sequence operator: c = (func(), (int[2\](c + 1, c + 2))[1\]) inside a for loop expression] + expected: FAIL diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html.ini deleted file mode 100644 index c98e41e777e..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[vector-dynamic-indexing-nv-driver-bug.html] - expected: ERROR - [Overall test] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/vector-dynamic-indexing.html.ini b/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/vector-dynamic-indexing.html.ini deleted file mode 100644 index d017d0ba0d9..00000000000 --- a/tests/wpt/mozilla/meta/webgl/conformance-2.0.0/conformance2/glsl3/vector-dynamic-indexing.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[vector-dynamic-indexing.html] - expected: ERROR - [Overall test] - expected: NOTRUN - |