From 86fc3221521089e1eae61e4d6e91abb57c980655 Mon Sep 17 00:00:00 2001 From: Adrian Utrilla Date: Sat, 7 May 2016 14:01:56 +0200 Subject: [PATCH 1/5] Added uniform matrix functions (fixes #10671) --- .../script/dom/webglrenderingcontext.rs | 66 + .../dom/webidls/WebGLRenderingContext.webidl | 6 + components/servo/Cargo.lock | 1457 +++++----- ports/cef/Cargo.lock | 1436 +++++----- ports/gonk/Cargo.lock | 2401 +++++++++++++++++ 5 files changed, 3838 insertions(+), 1528 deletions(-) create mode 100644 ports/gonk/Cargo.lock diff --git a/components/script/dom/webglrenderingcontext.rs b/components/script/dom/webglrenderingcontext.rs index dbb774ad87be..2d021855fe5d 100644 --- a/components/script/dom/webglrenderingcontext.rs +++ b/components/script/dom/webglrenderingcontext.rs @@ -1761,6 +1761,63 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext { } } + // https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10 + fn UniformMatrix2fv(&self, + _cx: *mut JSContext, + uniform: Option<&WebGLUniformLocation>, + transpose: bool, + data: Option<*mut JSObject>) { + if transpose { + return self.webgl_error(InvalidValue); + } + let data_vec = data.and_then(|d| array_buffer_view_to_vec::(d)); + if self.validate_uniform_parameters(uniform, UniformSetterType::FloatMat2, + data_vec.as_ref().map(Vec::as_slice)) { + self.ipc_renderer + .send(CanvasMsg::WebGL(WebGLCommand::UniformMatrix2fv(uniform.unwrap().id(), + false, data_vec.unwrap()))) + .unwrap() + } + } + + // https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10 + fn UniformMatrix3fv(&self, + _cx: *mut JSContext, + uniform: Option<&WebGLUniformLocation>, + transpose: bool, + data: Option<*mut JSObject>) { + if transpose { + return self.webgl_error(InvalidValue); + } + let data_vec = data.and_then(|d| array_buffer_view_to_vec::(d)); + if self.validate_uniform_parameters(uniform, UniformSetterType::FloatMat3, + data_vec.as_ref().map(Vec::as_slice)) { + self.ipc_renderer + .send(CanvasMsg::WebGL(WebGLCommand::UniformMatrix3fv(uniform.unwrap().id(), + false, data_vec.unwrap()))) + .unwrap() + } + } + + // https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10 + fn UniformMatrix4fv(&self, + _cx: *mut JSContext, + uniform: Option<&WebGLUniformLocation>, + transpose: bool, + data: Option<*mut JSObject>) { + if transpose { + return self.webgl_error(InvalidValue); + } + let data_vec = data.and_then(|d| array_buffer_view_to_vec::(d)); + if self.validate_uniform_parameters(uniform, UniformSetterType::FloatMat4, + data_vec.as_ref().map(Vec::as_slice)) { + self.ipc_renderer + .send(CanvasMsg::WebGL(WebGLCommand::UniformMatrix4fv(uniform.unwrap().id(), + false, data_vec.unwrap()))) + .unwrap() + } + } + // https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9 fn UseProgram(&self, program: Option<&WebGLProgram>) { if let Some(program) = program { @@ -2081,6 +2138,9 @@ pub enum UniformSetterType { FloatVec2, FloatVec3, FloatVec4, + FloatMat2, + FloatMat3, + FloatMat4, } impl UniformSetterType { @@ -2094,6 +2154,9 @@ impl UniformSetterType { UniformSetterType::FloatVec2 => 2, UniformSetterType::FloatVec3 => 3, UniformSetterType::FloatVec4 => 4, + UniformSetterType::FloatMat2 => 4, + UniformSetterType::FloatMat3 => 9, + UniformSetterType::FloatMat4 => 16, } } @@ -2126,6 +2189,9 @@ impl UniformSetterType { UniformSetterType::FloatVec2 => constants::FLOAT_VEC2, UniformSetterType::FloatVec3 => constants::FLOAT_VEC3, UniformSetterType::FloatVec4 => constants::FLOAT_VEC4, + UniformSetterType::FloatMat2 => constants::FLOAT_MAT2, + UniformSetterType::FloatMat3 => constants::FLOAT_MAT3, + UniformSetterType::FloatMat4 => constants::FLOAT_MAT4, } } } diff --git a/components/script/dom/webidls/WebGLRenderingContext.webidl b/components/script/dom/webidls/WebGLRenderingContext.webidl index eea550a5bc02..1c57e67d7e23 100644 --- a/components/script/dom/webidls/WebGLRenderingContext.webidl +++ b/components/script/dom/webidls/WebGLRenderingContext.webidl @@ -690,14 +690,20 @@ interface WebGLRenderingContextBase // See FIXME above void uniform4iv(WebGLUniformLocation? location, optional object v); + void uniformMatrix2fv(WebGLUniformLocation? location, GLboolean transpose, + optional object v); //void uniformMatrix2fv(WebGLUniformLocation? location, GLboolean transpose, // Float32Array value); //void uniformMatrix2fv(WebGLUniformLocation? location, GLboolean transpose, // sequence value); + void uniformMatrix3fv(WebGLUniformLocation? location, GLboolean transpose, + optional object v); //void uniformMatrix3fv(WebGLUniformLocation? location, GLboolean transpose, // Float32Array value); //void uniformMatrix3fv(WebGLUniformLocation? location, GLboolean transpose, // sequence value); + void uniformMatrix4fv(WebGLUniformLocation? location, GLboolean transpose, + optional object v); //void uniformMatrix4fv(WebGLUniformLocation? location, GLboolean transpose, // Float32Array value); //void uniformMatrix4fv(WebGLUniformLocation? location, GLboolean transpose, diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index b881a7c3ac42..3f44195d6d6a 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -3,27 +3,26 @@ name = "servo" version = "0.0.1" dependencies = [ "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "browserhtml 0.1.15 (git+https://github.com/browserhtml/browserhtml?branch=gh-pages)", + "browserhtml 0.1.5 (git+https://github.com/browserhtml/browserhtml?branch=gh-pages)", "canvas 0.0.1", "canvas_traits 0.0.1", "compiletest_helper 0.0.1", "compositing 0.0.1", - "constellation 0.0.1", "devtools 0.0.1", "devtools_traits 0.0.1", - "env_logger 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", "gfx_tests 0.0.1", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "layout 0.0.1", "layout_tests 0.0.1", - "layout_thread 0.0.1", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net 0.0.1", @@ -35,18 +34,16 @@ dependencies = [ "profile_tests 0.0.1", "profile_traits 0.0.1", "script 0.0.1", - "script_layout_interface 0.0.1", "script_tests 0.0.1", "script_traits 0.0.1", - "sig 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "style_tests 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "util_tests 0.0.1", "webdriver_server 0.0.1", "webrender 0.1.0 (git+https://github.com/servo/webrender)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -57,11 +54,6 @@ dependencies = [ "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "alloc-no-stdlib" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "android_glue" version = "0.1.3" @@ -70,20 +62,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "angle" version = "0.1.0" -source = "git+https://github.com/servo/angle?branch=servo#d0a2db05d1ada8e38b0143a5846f68089f332e9e" +source = "git+https://github.com/emilio/angle?branch=servo#eefe3506ae13e8ace811ca544fd6b4a5f0db0a04" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "app_units" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -97,42 +91,41 @@ dependencies = [ [[package]] name = "aster" -version = "0.19.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "azure" -version = "0.4.6" -source = "git+https://github.com/servo/rust-azure#4d72934a73820653986d9b11da759f5955a13e44" +version = "0.4.4" +source = "git+https://github.com/servo/rust-azure#7b0164d1d79957b2a59e9e103c02a53761c74b9d" dependencies = [ - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-text 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-skia 0.20130412.10 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "backtrace-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -141,41 +134,38 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bincode" -version = "0.5.9" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "bit-set" -version = "0.4.0" +name = "bitflags" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bit-vec 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] -name = "bit-vec" -version = "0.4.3" +name = "bitflags" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "bitflags" -version = "0.7.0" +name = "block" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "blurz" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dbus 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -184,55 +174,52 @@ dependencies = [ [[package]] name = "brotli" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "alloc-no-stdlib 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] +version = "0.3.23" +source = "git+https://github.com/ende76/brotli-rs#d8507fd07e9fa57ed8251d5dc500dcd62df62c7c" [[package]] name = "browserhtml" -version = "0.1.15" -source = "git+https://github.com/browserhtml/browserhtml?branch=gh-pages#48eed1856f8bf49ccf3f60e25d871e1654d67f22" +version = "0.1.5" +source = "git+https://github.com/browserhtml/browserhtml?branch=gh-pages#146e7909211792ac6d955d87339c547aeb517136" [[package]] name = "byteorder" -version = "0.5.3" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "canvas" version = "0.0.1" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "canvas_traits 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "canvas_traits" version = "0.0.1" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -240,7 +227,7 @@ name = "caseless" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-normalization 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -254,8 +241,30 @@ name = "cgl" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clipboard" +version = "0.1.2" +source = "git+https://github.com/aweinstock314/rust-clipboard#f4c5c1d3c1759f0a167091405d11af1f9584fb1f" +dependencies = [ + "clipboard-win 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc-foundation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clipboard-win" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -268,12 +277,12 @@ dependencies = [ [[package]] name = "cocoa" -version = "0.4.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -286,12 +295,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "compiletest_helper" version = "0.0.1" dependencies = [ - "compiletest_rs 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "compiletest_rs 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "compiletest_rs" -version = "0.1.3" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -301,119 +310,86 @@ dependencies = [ name = "compositing" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gfx_traits 0.0.1", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "msg 0.0.1", - "net_traits 0.0.1", - "plugins 0.0.1", - "profile_traits 0.0.1", - "script_traits 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "style_traits 0.0.1", - "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", - "webrender 0.1.0 (git+https://github.com/servo/webrender)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", -] - -[[package]] -name = "constellation" -version = "0.0.1" -dependencies = [ - "backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "canvas 0.0.1", "canvas_traits 0.0.1", - "compositing 0.0.1", + "clipboard 0.1.2 (git+https://github.com/aweinstock314/rust-clipboard)", "devtools_traits 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", "gfx_traits 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "layout_traits 0.0.1", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "script_traits 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", -] - -[[package]] -name = "content-blocker" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender 0.1.0 (git+https://github.com/servo/webrender)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "cookie" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-foundation" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-foundation-sys" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-graphics" -version = "0.3.2" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-text" -version = "1.1.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -427,11 +403,11 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -439,7 +415,7 @@ name = "dbghelp-sys" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -448,7 +424,7 @@ name = "dbus" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -471,9 +447,9 @@ dependencies = [ [[package]] name = "device" version = "0.0.1" -source = "git+https://github.com/servo/devices#3c39846a019eeed939eb7090096631254e6b5efc" +source = "git+https://github.com/servo/devices#cac0952154f65b416acef273a6d1099421ce113e" dependencies = [ - "blurz 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "blurz 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -481,14 +457,13 @@ name = "devtools" version = "0.0.1" dependencies = [ "devtools_traits 0.0.1", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -497,16 +472,16 @@ dependencies = [ name = "devtools_traits" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -522,7 +497,7 @@ name = "dwmapi-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -531,7 +506,7 @@ name = "dylib" version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -603,7 +578,7 @@ source = "git+https://github.com/energymon/energymon-rust.git#7b30c4d88ac1fcfaf7 dependencies = [ "energy-monitor 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "energymon-default-sys 0.2.0 (git+https://github.com/energymon/energymon-sys.git)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -621,7 +596,7 @@ source = "git+https://github.com/energymon/energymon-sys.git#a0fb99b0312372958b1 dependencies = [ "energymon-builder 0.2.0 (git+https://github.com/energymon/energymon-sys.git)", "energymon-sys 0.2.0 (git+https://github.com/energymon/energymon-sys.git)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -629,7 +604,7 @@ name = "energymon-sys" version = "0.2.0" source = "git+https://github.com/energymon/energymon-sys.git#a0fb99b0312372958b110ae6378b5c89c2287172" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -642,23 +617,25 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.3.4" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "euclid" -version = "0.7.1" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -672,16 +649,16 @@ dependencies = [ [[package]] name = "flate2" -version = "0.2.14" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "miniz-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fnv" -version = "1.0.3" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -689,7 +666,7 @@ name = "freetype" version = "0.1.0" source = "git+https://github.com/servo/rust-freetype#d564ff90a3c69d987f5c015d7ec034cfaee21aff" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -698,8 +675,8 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -716,7 +693,7 @@ name = "gaol" version = "0.0.1" source = "git+https://github.com/servo/gaol#545c703ebfe7a3a0d7129eb40981527f5d680860" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -728,11 +705,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "gdi32-sys" -version = "0.2.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -744,26 +720,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "gfx" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-text 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", "gfx_traits 0.0.1", - "harfbuzz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", + "harfbuzz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", "plugins 0.0.1", @@ -771,19 +746,20 @@ dependencies = [ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "range 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", "simd 0.1.0 (git+https://github.com/huonw/simd)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "style_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", "xi-unicode 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -792,7 +768,7 @@ name = "gfx_tests" version = "0.0.1" dependencies = [ "gfx 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "style 0.0.1", ] @@ -800,23 +776,20 @@ dependencies = [ name = "gfx_traits" version = "0.0.1" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "msg 0.0.1", "plugins 0.0.1", - "profile_traits 0.0.1", - "range 0.0.1", - "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "gif" -version = "0.9.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "color_quant 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -825,20 +798,20 @@ dependencies = [ [[package]] name = "gl_generator" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "xml-rs 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "gleam" -version = "0.2.20" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -850,24 +823,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "glutin_app" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "compositing 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gdi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "msg 0.0.1", "net_traits 0.0.1", "script_traits 0.0.1", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.25 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-glutin 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -875,52 +844,69 @@ name = "glx" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "harfbuzz-sys" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "heapsize" -version = "0.3.6" +name = "hbs-builder" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "heapsize_plugin" -version = "0.1.5" +name = "hbs-common-sys" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "heartbeats-simple" -version = "0.3.0" +name = "hbs-pow" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heartbeats-simple-sys 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-pow-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "heartbeats-simple-sys" -version = "0.3.0" +name = "hbs-pow-sys" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-builder 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-common-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "heapsize" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heapsize_plugin" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "hpack" version = "0.2.0" @@ -934,14 +920,14 @@ name = "html5ever" version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "tendril 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -953,25 +939,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hyper" -version = "0.9.10" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-verify 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "solicit 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "traitobject 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -986,28 +971,28 @@ dependencies = [ [[package]] name = "image" -version = "0.10.1" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "enum_primitive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gif 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "gif 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "jpeg-decoder 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jpeg-decoder 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "png 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "png 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "immeta" -version = "0.3.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1017,50 +1002,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "io-surface" -version = "0.2.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "leaky-cow 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "ipc-channel" -version = "0.4.0" -source = "git+https://github.com/servo/ipc-channel#346456b792f0a8e86b4ed077997408a697a06a0f" +version = "0.2.2" +source = "git+https://github.com/servo/ipc-channel#10bed82904d635b2ff6a916872130868cb69b104" dependencies = [ - "bincode 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)", + "bincode 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jpeg-decoder" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "js" -version = "0.1.3" -source = "git+https://github.com/servo/rust-mozjs#bc9add648b3174120d70d0bef3935912bd6f1313" +version = "0.1.2" +source = "git+https://github.com/servo/rust-mozjs#8ad6c1148fd77e5b9dc2ce0f0ab40d4f455f6f4e" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "mozjs_sys 0.0.0 (git+https://github.com/servo/mozjs)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1068,7 +1057,7 @@ name = "kernel32-sys" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1084,43 +1073,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "layers" -version = "0.2.6" -source = "git+https://github.com/servo/rust-layers#79fca9ca5f2b7bded94dd34637a251967a9b0247" +version = "0.2.4" +source = "git+https://github.com/servo/rust-layers#d7a8a6aa73ec16127042325af4b2d5f9a1fa585d" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glx 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "io-surface 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "io-surface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-skia 0.20130412.10 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "layout" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "canvas_traits 0.0.1", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layout_traits 0.0.1", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", @@ -1128,19 +1118,21 @@ dependencies = [ "profile_traits 0.0.1", "range 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "script_layout_interface 0.0.1", + "script 0.0.1", "script_traits 0.0.1", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -1150,50 +1142,21 @@ dependencies = [ "layout 0.0.1", ] -[[package]] -name = "layout_thread" -version = "0.0.1" -dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "gfx 0.0.1", - "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layout 0.0.1", - "layout_traits 0.0.1", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "msg 0.0.1", - "net_traits 0.0.1", - "plugins 0.0.1", - "profile_traits 0.0.1", - "script 0.0.1", - "script_layout_interface 0.0.1", - "script_traits 0.0.1", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "style 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", -] - [[package]] name = "layout_traits" version = "0.0.1" dependencies = [ "gfx 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net_traits 0.0.1", "profile_traits 0.0.1", "script_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -1221,7 +1184,7 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.13" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1231,7 +1194,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1244,11 +1207,11 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.0.4" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1277,7 +1240,7 @@ name = "malloc_buf" version = "0.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1290,7 +1253,7 @@ name = "memchr" version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1300,27 +1263,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fs2 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "mime" -version = "0.2.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "mime_guess" -version = "1.8.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1330,7 +1293,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1338,63 +1301,62 @@ name = "mozjs_sys" version = "0.0.0" source = "git+https://github.com/servo/mozjs#2af5849a97a9f18acd482940ba3fa0c6797ed7eb" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libz-sys 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "msg" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "net" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "brotli 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "content-blocker 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "brotli 0.3.23 (git+https://github.com/ende76/brotli-rs)", + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "device 0.0.1 (git+https://github.com/servo/devices)", "devtools_traits 0.0.1", - "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "immeta 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "immeta 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mime_guess 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime_guess 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-verify 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", - "profile_traits 0.0.1", - "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "threadpool 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "threadpool 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "tinyfiledialogs 0.1.0 (git+https://github.com/jdm/tinyfiledialogs)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", - "websocket 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1404,8 +1366,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1413,20 +1375,18 @@ dependencies = [ name = "net_tests" version = "0.0.1" dependencies = [ - "content-blocker 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", - "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net 0.0.1", "net_traits 0.0.1", "plugins 0.0.1", - "profile_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -1434,22 +1394,19 @@ dependencies = [ name = "net_traits" version = "0.0.1" dependencies = [ - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "websocket 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1472,8 +1429,11 @@ name = "num" version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "num-bigint 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-complex 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1488,6 +1448,15 @@ dependencies = [ "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "num-complex" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "num-integer" version = "0.1.32" @@ -1523,10 +1492,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "num_cpus" -version = "0.2.13" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1537,6 +1506,24 @@ dependencies = [ "malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "objc-foundation" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "objc_id" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "odds" version = "0.2.12" @@ -1544,66 +1531,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "offscreen_gl_context" -version = "0.1.9" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "open" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "openssl" -version = "0.7.14" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys-extras 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys-extras 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "openssl-sys" -version = "0.7.14" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gdi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "libressl-pnacl-sys 2.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "openssl-sys-extras" -version = "0.7.14" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "openssl-verify" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1611,48 +1586,48 @@ name = "osmesa-sys" version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "shared_library 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_codegen" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_generator 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_generator" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_macros" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_generator 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_shared" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1676,7 +1651,7 @@ dependencies = [ name = "plugins" version = "0.0.1" dependencies = [ - "tenacious 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tenacious 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1689,13 +1664,13 @@ dependencies = [ [[package]] name = "png" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "inflate 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1703,16 +1678,16 @@ dependencies = [ name = "profile" version = "0.0.1" dependencies = [ - "heartbeats-simple 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-pow 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "task_info 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", @@ -1722,7 +1697,6 @@ dependencies = [ name = "profile_tests" version = "0.0.1" dependencies = [ - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", "profile 0.0.1", "profile_traits 0.0.1", ] @@ -1733,32 +1707,32 @@ version = "0.0.1" dependencies = [ "energy-monitor 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "energymon 0.2.0 (git+https://github.com/energymon/energymon-rust.git)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "quasi" -version = "0.13.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quasi_codegen" -version = "0.13.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aster 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "aster 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "quasi_macros" -version = "0.13.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quasi_codegen 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi_codegen 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1775,28 +1749,28 @@ name = "rand" version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "range" version = "0.0.1" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon" -version = "0.4.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1812,24 +1786,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex" -version = "0.1.71" +version = "0.1.69" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aho-corasick 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rustc-demangle" -version = "0.1.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1854,87 +1823,56 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "script" version = "0.0.1" dependencies = [ - "angle 0.1.0 (git+https://github.com/servo/angle?branch=servo)", - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "angle 0.1.0 (git+https://github.com/emilio/angle?branch=servo)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "canvas 0.0.1", "canvas_traits 0.0.1", "caseless 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "html5ever 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "js 0.1.3 (git+https://github.com/servo/rust-mozjs)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mime_guess 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "open 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_macros 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_macros 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "range 0.0.1", "ref_filter_map 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "ref_slice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "script_layout_interface 0.0.1", "script_traits 0.0.1", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "tinyfiledialogs 0.1.0 (git+https://github.com/jdm/tinyfiledialogs)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", - "websocket 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xml5ever 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "script_layout_interface" -version = "0.0.1" -dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "canvas_traits 0.0.1", - "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "msg 0.0.1", - "net_traits 0.0.1", - "plugins 0.0.1", - "profile_traits 0.0.1", - "range 0.0.1", - "script_traits 0.0.1", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "style 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", + "xml5ever 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1944,52 +1882,50 @@ dependencies = [ "msg 0.0.1", "plugins 0.0.1", "script 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", ] [[package]] name = "script_traits" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "canvas_traits 0.0.1", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", - "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] [[package]] name = "selectors" -version = "0.7.0" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "quickersort 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1999,40 +1935,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "0.7.11" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde_codegen" -version = "0.7.11" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aster 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quasi 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quasi_macros 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_item 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "aster 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi_macros 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "serde_item" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "serde_json" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_macros" -version = "0.7.11" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_codegen 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_codegen 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2040,7 +1970,7 @@ name = "servo-egl" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2048,7 +1978,7 @@ name = "servo-fontconfig" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "servo-fontconfig-sys 2.11.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2072,50 +2002,49 @@ dependencies = [ [[package]] name = "servo-glutin" -version = "0.4.25" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cocoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cocoa 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "dwmapi-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gdi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "osmesa-sys 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "shared_library 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "shell32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-client 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-kbd 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-kbd 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "wayland-window 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "x11-dl 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "servo-skia" -version = "0.20130412.10" +version = "0.20130412.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "expat-sys 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glx 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "io-surface 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "io-surface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.25 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-glutin 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2124,7 +2053,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2132,15 +2061,10 @@ name = "shell32-sys" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sig" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "simd" version = "0.1.0" @@ -2148,7 +2072,7 @@ source = "git+https://github.com/huonw/simd#03de1cd0a278ab902b4beb402d57505f3797 [[package]] name = "smallvec" -version = "0.1.8" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2162,65 +2086,62 @@ dependencies = [ [[package]] name = "string_cache" -version = "0.2.21" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_generator 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "style" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", - "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "walkdir 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "style_tests" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "plugins 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "style_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -2229,12 +2150,14 @@ name = "style_traits" version = "0.0.1" dependencies = [ "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", ] [[package]] @@ -2258,15 +2181,15 @@ version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tenacious" -version = "0.2.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2286,7 +2209,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2299,7 +2222,7 @@ dependencies = [ [[package]] name = "threadpool" -version = "1.3.1" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2308,17 +2231,17 @@ version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tinyfiledialogs" version = "0.1.0" -source = "git+https://github.com/jdm/tinyfiledialogs#3a30f8f95686195cb3bcecfc77ff77277a624a53" +source = "git+https://github.com/jdm/tinyfiledialogs#686abf781f30b360a4c265964fd3744e2f61cf2d" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2357,7 +2280,7 @@ name = "unicode-script" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "harfbuzz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "harfbuzz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2370,24 +2293,24 @@ dependencies = [ [[package]] name = "url" -version = "1.1.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "idna 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "user32-sys" -version = "0.2.0" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2408,27 +2331,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "util" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xdg 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "util_tests" version = "0.0.1" dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", "util 0.0.1", ] @@ -2438,7 +2374,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2446,38 +2381,29 @@ name = "void" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "walkdir" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "wayland-client" -version = "0.5.12" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "wayland-scanner 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "wayland-sys 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wayland-kbd" -version = "0.3.6" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "memmap 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-client 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2485,7 +2411,7 @@ name = "wayland-scanner" version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "xml-rs 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2502,9 +2428,9 @@ name = "wayland-window" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-client 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2512,9 +2438,9 @@ name = "webdriver" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2522,18 +2448,16 @@ dependencies = [ name = "webdriver_server" version = "0.0.1" dependencies = [ - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "compositing 0.0.1", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "script_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2542,63 +2466,61 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#fd38ab8994be39ba194f56182af8c467b4f9f929" -dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-text 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", +source = "git+https://github.com/servo/webrender#e3ee5d46093d0b2bb3c14398914bc9a7a36bcfbd" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "scoped_threadpool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "webrender_traits" -version = "0.2.0" -source = "git+https://github.com/servo/webrender_traits#d86e51ace4fd1b43123e0490dc80f631be0726d0" +version = "0.1.0" +source = "git+https://github.com/servo/webrender_traits#47daae0b38a4f507584a51538854d7da93b6e987" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "websocket" -version = "0.17.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "winapi" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2611,16 +2533,16 @@ name = "ws2_32-sys" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "x11" -version = "2.6.1" +version = "2.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2630,14 +2552,9 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dylib 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "xdg" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "xi-unicode" version = "0.0.1" @@ -2645,23 +2562,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "xml-rs" -version = "0.3.4" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "xml5ever" -version = "0.1.3" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "tendril 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 61cbc98c96ec..ef1cfbe951d4 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -2,25 +2,34 @@ name = "embedding" version = "0.0.1" dependencies = [ - "cocoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cocoa 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "compositing 0.0.1", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "devtools 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx 0.0.1", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", + "script 0.0.1", "script_traits 0.0.1", "servo 0.0.1", + "style 0.0.1", "style_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -31,11 +40,6 @@ dependencies = [ "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "alloc-no-stdlib" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "android_glue" version = "0.1.3" @@ -44,20 +48,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "angle" version = "0.1.0" -source = "git+https://github.com/servo/angle?branch=servo#d0a2db05d1ada8e38b0143a5846f68089f332e9e" +source = "git+https://github.com/emilio/angle?branch=servo#eefe3506ae13e8ace811ca544fd6b4a5f0db0a04" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "app_units" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -71,42 +77,41 @@ dependencies = [ [[package]] name = "aster" -version = "0.19.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "azure" -version = "0.4.6" -source = "git+https://github.com/servo/rust-azure#4d72934a73820653986d9b11da759f5955a13e44" +version = "0.4.4" +source = "git+https://github.com/servo/rust-azure#7b0164d1d79957b2a59e9e103c02a53761c74b9d" dependencies = [ - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-text 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-skia 0.20130412.10 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "backtrace-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -115,41 +120,38 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bincode" -version = "0.5.9" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "bit-set" -version = "0.4.0" +name = "bitflags" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bit-vec 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] -name = "bit-vec" -version = "0.4.3" +name = "bitflags" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "bitflags" -version = "0.7.0" +name = "block" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "blurz" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dbus 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -158,55 +160,52 @@ dependencies = [ [[package]] name = "brotli" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "alloc-no-stdlib 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] +version = "0.3.23" +source = "git+https://github.com/ende76/brotli-rs#d8507fd07e9fa57ed8251d5dc500dcd62df62c7c" [[package]] name = "browserhtml" -version = "0.1.15" -source = "git+https://github.com/browserhtml/browserhtml?branch=gh-pages#48eed1856f8bf49ccf3f60e25d871e1654d67f22" +version = "0.1.5" +source = "git+https://github.com/browserhtml/browserhtml?branch=gh-pages#146e7909211792ac6d955d87339c547aeb517136" [[package]] name = "byteorder" -version = "0.5.3" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "canvas" version = "0.0.1" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "canvas_traits 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "canvas_traits" version = "0.0.1" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -214,7 +213,7 @@ name = "caseless" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-normalization 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -228,8 +227,30 @@ name = "cgl" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clipboard" +version = "0.1.2" +source = "git+https://github.com/aweinstock314/rust-clipboard#f4c5c1d3c1759f0a167091405d11af1f9584fb1f" +dependencies = [ + "clipboard-win 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc-foundation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clipboard-win" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -242,12 +263,12 @@ dependencies = [ [[package]] name = "cocoa" -version = "0.4.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -260,119 +281,86 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "compositing" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gfx_traits 0.0.1", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "msg 0.0.1", - "net_traits 0.0.1", - "plugins 0.0.1", - "profile_traits 0.0.1", - "script_traits 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "style_traits 0.0.1", - "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", - "webrender 0.1.0 (git+https://github.com/servo/webrender)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", -] - -[[package]] -name = "constellation" -version = "0.0.1" -dependencies = [ - "backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "canvas 0.0.1", "canvas_traits 0.0.1", - "compositing 0.0.1", + "clipboard 0.1.2 (git+https://github.com/aweinstock314/rust-clipboard)", "devtools_traits 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", "gfx_traits 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "layout_traits 0.0.1", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "script_traits 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", -] - -[[package]] -name = "content-blocker" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender 0.1.0 (git+https://github.com/servo/webrender)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "cookie" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-foundation" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-foundation-sys" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-graphics" -version = "0.3.2" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-text" -version = "1.1.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -386,11 +374,11 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -398,7 +386,7 @@ name = "dbghelp-sys" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -407,7 +395,7 @@ name = "dbus" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -430,9 +418,9 @@ dependencies = [ [[package]] name = "device" version = "0.0.1" -source = "git+https://github.com/servo/devices#3c39846a019eeed939eb7090096631254e6b5efc" +source = "git+https://github.com/servo/devices#cac0952154f65b416acef273a6d1099421ce113e" dependencies = [ - "blurz 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "blurz 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -440,14 +428,13 @@ name = "devtools" version = "0.0.1" dependencies = [ "devtools_traits 0.0.1", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -456,16 +443,16 @@ dependencies = [ name = "devtools_traits" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -481,7 +468,7 @@ name = "dwmapi-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -490,7 +477,7 @@ name = "dylib" version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -560,23 +547,25 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.3.4" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "euclid" -version = "0.7.1" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -590,16 +579,16 @@ dependencies = [ [[package]] name = "flate2" -version = "0.2.14" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "miniz-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fnv" -version = "1.0.3" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -607,7 +596,7 @@ name = "freetype" version = "0.1.0" source = "git+https://github.com/servo/rust-freetype#d564ff90a3c69d987f5c015d7ec034cfaee21aff" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -616,8 +605,8 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -634,7 +623,7 @@ name = "gaol" version = "0.0.1" source = "git+https://github.com/servo/gaol#545c703ebfe7a3a0d7129eb40981527f5d680860" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -646,11 +635,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "gdi32-sys" -version = "0.2.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -662,26 +650,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "gfx" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-text 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", "gfx_traits 0.0.1", - "harfbuzz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", + "harfbuzz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", "plugins 0.0.1", @@ -689,19 +676,20 @@ dependencies = [ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "range 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", "simd 0.1.0 (git+https://github.com/huonw/simd)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "style_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", "xi-unicode 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -709,23 +697,20 @@ dependencies = [ name = "gfx_traits" version = "0.0.1" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "msg 0.0.1", "plugins 0.0.1", - "profile_traits 0.0.1", - "range 0.0.1", - "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "gif" -version = "0.9.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "color_quant 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -734,20 +719,20 @@ dependencies = [ [[package]] name = "gl_generator" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "xml-rs 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "gleam" -version = "0.2.20" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -759,24 +744,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "glutin_app" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "compositing 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gdi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "msg 0.0.1", "net_traits 0.0.1", "script_traits 0.0.1", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.25 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-glutin 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -784,52 +765,69 @@ name = "glx" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "harfbuzz-sys" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "heapsize" -version = "0.3.6" +name = "hbs-builder" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "heapsize_plugin" -version = "0.1.5" +name = "hbs-common-sys" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "heartbeats-simple" -version = "0.3.0" +name = "hbs-pow" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heartbeats-simple-sys 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-pow-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "heartbeats-simple-sys" -version = "0.3.0" +name = "hbs-pow-sys" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-builder 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-common-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "heapsize" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heapsize_plugin" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "hpack" version = "0.2.0" @@ -843,14 +841,14 @@ name = "html5ever" version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "tendril 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -862,25 +860,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hyper" -version = "0.9.10" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-verify 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "solicit 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "traitobject 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -895,28 +892,28 @@ dependencies = [ [[package]] name = "image" -version = "0.10.1" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "enum_primitive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gif 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "gif 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "jpeg-decoder 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jpeg-decoder 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "png 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "png 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "immeta" -version = "0.3.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -926,50 +923,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "io-surface" -version = "0.2.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "leaky-cow 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "ipc-channel" -version = "0.4.0" -source = "git+https://github.com/servo/ipc-channel#346456b792f0a8e86b4ed077997408a697a06a0f" +version = "0.2.2" +source = "git+https://github.com/servo/ipc-channel#10bed82904d635b2ff6a916872130868cb69b104" dependencies = [ - "bincode 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)", + "bincode 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jpeg-decoder" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "js" -version = "0.1.3" -source = "git+https://github.com/servo/rust-mozjs#bc9add648b3174120d70d0bef3935912bd6f1313" +version = "0.1.2" +source = "git+https://github.com/servo/rust-mozjs#8ad6c1148fd77e5b9dc2ce0f0ab40d4f455f6f4e" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "mozjs_sys 0.0.0 (git+https://github.com/servo/mozjs)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -977,7 +978,7 @@ name = "kernel32-sys" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -993,43 +994,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "layers" -version = "0.2.6" -source = "git+https://github.com/servo/rust-layers#79fca9ca5f2b7bded94dd34637a251967a9b0247" +version = "0.2.4" +source = "git+https://github.com/servo/rust-layers#d7a8a6aa73ec16127042325af4b2d5f9a1fa585d" dependencies = [ - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glx 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "io-surface 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "io-surface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-skia 0.20130412.10 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "layout" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "canvas_traits 0.0.1", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layout_traits 0.0.1", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", @@ -1037,50 +1039,21 @@ dependencies = [ "profile_traits 0.0.1", "range 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "script_layout_interface 0.0.1", + "script 0.0.1", "script_traits 0.0.1", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", -] - -[[package]] -name = "layout_thread" -version = "0.0.1" -dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.6 (git+https://github.com/servo/rust-azure)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "gfx 0.0.1", - "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layout 0.0.1", - "layout_traits 0.0.1", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "msg 0.0.1", - "net_traits 0.0.1", - "plugins 0.0.1", - "profile_traits 0.0.1", - "script 0.0.1", - "script_layout_interface 0.0.1", - "script_traits 0.0.1", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "style 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -1088,14 +1061,16 @@ name = "layout_traits" version = "0.0.1" dependencies = [ "gfx 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net_traits 0.0.1", "profile_traits 0.0.1", "script_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -1123,7 +1098,7 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.13" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1133,7 +1108,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1146,11 +1121,11 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.0.4" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1179,7 +1154,7 @@ name = "malloc_buf" version = "0.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1192,7 +1167,7 @@ name = "memchr" version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1202,27 +1177,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fs2 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "mime" -version = "0.2.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "mime_guess" -version = "1.8.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1232,7 +1207,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1240,63 +1215,62 @@ name = "mozjs_sys" version = "0.0.0" source = "git+https://github.com/servo/mozjs#2af5849a97a9f18acd482940ba3fa0c6797ed7eb" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libz-sys 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "msg" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "net" version = "0.0.1" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "brotli 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "content-blocker 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "brotli 0.3.23 (git+https://github.com/ende76/brotli-rs)", + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "device 0.0.1 (git+https://github.com/servo/devices)", "devtools_traits 0.0.1", - "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "immeta 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "immeta 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mime_guess 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime_guess 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-verify 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", - "profile_traits 0.0.1", - "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "threadpool 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "threadpool 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "tinyfiledialogs 0.1.0 (git+https://github.com/jdm/tinyfiledialogs)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", - "websocket 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1306,8 +1280,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1315,22 +1289,19 @@ dependencies = [ name = "net_traits" version = "0.0.1" dependencies = [ - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "websocket 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1346,8 +1317,11 @@ name = "num" version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "num-bigint 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-complex 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1362,6 +1336,15 @@ dependencies = [ "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "num-complex" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "num-integer" version = "0.1.32" @@ -1397,10 +1380,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "num_cpus" -version = "0.2.13" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1411,6 +1394,24 @@ dependencies = [ "malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "objc-foundation" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "objc_id" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "odds" version = "0.2.12" @@ -1418,66 +1419,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "offscreen_gl_context" -version = "0.1.9" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "open" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "openssl" -version = "0.7.14" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys-extras 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys-extras 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "openssl-sys" -version = "0.7.14" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gdi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "libressl-pnacl-sys 2.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "openssl-sys-extras" -version = "0.7.14" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "openssl-verify" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1485,48 +1474,48 @@ name = "osmesa-sys" version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "shared_library 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_codegen" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_generator 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_generator" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_macros" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "phf_generator 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "phf_shared" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1541,7 +1530,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "plugins" version = "0.0.1" dependencies = [ - "tenacious 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tenacious 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1554,13 +1543,13 @@ dependencies = [ [[package]] name = "png" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "inflate 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1568,16 +1557,16 @@ dependencies = [ name = "profile" version = "0.0.1" dependencies = [ - "heartbeats-simple 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-pow 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "task_info 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", @@ -1587,32 +1576,32 @@ dependencies = [ name = "profile_traits" version = "0.0.1" dependencies = [ - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "quasi" -version = "0.13.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quasi_codegen" -version = "0.13.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aster 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "aster 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "quasi_macros" -version = "0.13.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quasi_codegen 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi_codegen 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1629,28 +1618,28 @@ name = "rand" version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "range" version = "0.0.1" dependencies = [ - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon" -version = "0.4.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1666,24 +1655,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex" -version = "0.1.71" +version = "0.1.69" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aho-corasick 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rustc-demangle" -version = "0.1.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1708,132 +1692,98 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "script" version = "0.0.1" dependencies = [ - "angle 0.1.0 (git+https://github.com/servo/angle?branch=servo)", - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "angle 0.1.0 (git+https://github.com/emilio/angle?branch=servo)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "canvas 0.0.1", "canvas_traits 0.0.1", "caseless 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "html5ever 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "js 0.1.3 (git+https://github.com/servo/rust-mozjs)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mime_guess 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "open 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_macros 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_macros 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "range 0.0.1", "ref_filter_map 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "ref_slice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "script_layout_interface 0.0.1", "script_traits 0.0.1", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "tinyfiledialogs 0.1.0 (git+https://github.com/jdm/tinyfiledialogs)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", - "websocket 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xml5ever 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "script_layout_interface" -version = "0.0.1" -dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "canvas_traits 0.0.1", - "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "msg 0.0.1", - "net_traits 0.0.1", - "plugins 0.0.1", - "profile_traits 0.0.1", - "range 0.0.1", - "script_traits 0.0.1", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "style 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", + "xml5ever 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "script_traits" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "canvas_traits 0.0.1", - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "layers 0.2.6 (git+https://github.com/servo/rust-layers)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "profile_traits 0.0.1", - "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] [[package]] name = "selectors" -version = "0.7.0" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "quickersort 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1843,65 +1793,56 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "0.7.11" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde_codegen" -version = "0.7.11" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aster 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quasi 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quasi_macros 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_item 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "aster 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi_macros 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "serde_item" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "serde_json" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_macros" -version = "0.7.11" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_codegen 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_codegen 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "servo" version = "0.0.1" dependencies = [ - "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "browserhtml 0.1.15 (git+https://github.com/browserhtml/browserhtml?branch=gh-pages)", + "browserhtml 0.1.5 (git+https://github.com/browserhtml/browserhtml?branch=gh-pages)", "canvas 0.0.1", "canvas_traits 0.0.1", "compositing 0.0.1", - "constellation 0.0.1", "devtools 0.0.1", "devtools_traits 0.0.1", - "env_logger 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", "layout 0.0.1", - "layout_thread 0.0.1", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net 0.0.1", @@ -1909,15 +1850,13 @@ dependencies = [ "profile 0.0.1", "profile_traits 0.0.1", "script 0.0.1", - "script_layout_interface 0.0.1", "script_traits 0.0.1", - "sig 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "style 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_server 0.0.1", "webrender 0.1.0 (git+https://github.com/servo/webrender)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] @@ -1925,7 +1864,7 @@ name = "servo-egl" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1933,7 +1872,7 @@ name = "servo-fontconfig" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "servo-fontconfig-sys 2.11.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1957,50 +1896,49 @@ dependencies = [ [[package]] name = "servo-glutin" -version = "0.4.25" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cocoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cocoa 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "dwmapi-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gdi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "osmesa-sys 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "shared_library 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "shell32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-client 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-kbd 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-kbd 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "wayland-window 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "x11-dl 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "servo-skia" -version = "0.20130412.10" +version = "0.20130412.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "expat-sys 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "glx 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "io-surface 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "io-surface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.25 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-glutin 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2009,7 +1947,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2017,15 +1955,10 @@ name = "shell32-sys" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sig" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "simd" version = "0.1.0" @@ -2033,7 +1966,7 @@ source = "git+https://github.com/huonw/simd#03de1cd0a278ab902b4beb402d57505f3797 [[package]] name = "smallvec" -version = "0.1.8" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2047,50 +1980,45 @@ dependencies = [ [[package]] name = "string_cache" -version = "0.2.21" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_generator 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "style" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", - "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "selectors 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "style_traits 0.0.1", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", - "walkdir 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2098,12 +2026,14 @@ name = "style_traits" version = "0.0.1" dependencies = [ "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", ] [[package]] @@ -2127,15 +2057,15 @@ version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tenacious" -version = "0.2.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2155,7 +2085,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2168,7 +2098,7 @@ dependencies = [ [[package]] name = "threadpool" -version = "1.3.1" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2177,17 +2107,17 @@ version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tinyfiledialogs" version = "0.1.0" -source = "git+https://github.com/jdm/tinyfiledialogs#3a30f8f95686195cb3bcecfc77ff77277a624a53" +source = "git+https://github.com/jdm/tinyfiledialogs#686abf781f30b360a4c265964fd3744e2f61cf2d" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2226,7 +2156,7 @@ name = "unicode-script" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "harfbuzz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "harfbuzz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2239,24 +2169,24 @@ dependencies = [ [[package]] name = "url" -version = "1.1.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize_plugin 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "idna 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "user32-sys" -version = "0.2.0" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2277,21 +2207,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "util" version = "0.0.1" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xdg 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2300,7 +2239,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2308,38 +2246,29 @@ name = "void" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "walkdir" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "wayland-client" -version = "0.5.12" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "wayland-scanner 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "wayland-sys 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wayland-kbd" -version = "0.3.6" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "memmap 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-client 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2347,7 +2276,7 @@ name = "wayland-scanner" version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "xml-rs 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2364,9 +2293,9 @@ name = "wayland-window" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wayland-client 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2374,9 +2303,9 @@ name = "webdriver" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2384,18 +2313,16 @@ dependencies = [ name = "webdriver_server" version = "0.0.1" dependencies = [ - "cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "image 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "compositing 0.0.1", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", - "regex 0.1.71 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "script_traits 0.0.1", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2404,63 +2331,61 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#fd38ab8994be39ba194f56182af8c467b4f9f929" -dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "core-text 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", +source = "git+https://github.com/servo/webrender#e3ee5d46093d0b2bb3c14398914bc9a7a36bcfbd" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "scoped_threadpool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "webrender_traits 0.2.0 (git+https://github.com/servo/webrender_traits)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", ] [[package]] name = "webrender_traits" -version = "0.2.0" -source = "git+https://github.com/servo/webrender_traits#d86e51ace4fd1b43123e0490dc80f631be0726d0" +version = "0.1.0" +source = "git+https://github.com/servo/webrender_traits#47daae0b38a4f507584a51538854d7da93b6e987" dependencies = [ - "app_units 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gleam 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.4.0 (git+https://github.com/servo/ipc-channel)", - "offscreen_gl_context 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_macros 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "websocket" -version = "0.17.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "winapi" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2473,16 +2398,16 @@ name = "ws2_32-sys" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "x11" -version = "2.6.1" +version = "2.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2492,14 +2417,9 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dylib 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "xdg" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "xi-unicode" version = "0.0.1" @@ -2507,23 +2427,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "xml-rs" -version = "0.3.4" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "xml5ever" -version = "0.1.3" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "tendril 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock new file mode 100644 index 000000000000..cb61f1032dfe --- /dev/null +++ b/ports/gonk/Cargo.lock @@ -0,0 +1,2401 @@ +[root] +name = "b2s" +version = "0.0.1" +dependencies = [ + "compositing 0.0.1", + "devtools 0.0.1", + "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "errno 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx 0.0.1", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "layout 0.0.1", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "profile 0.0.1", + "script 0.0.1", + "script_traits 0.0.1", + "servo 0.0.1", + "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", +] + +[[package]] +name = "aho-corasick" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "android_glue" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "angle" +version = "0.1.0" +source = "git+https://github.com/emilio/angle?branch=servo#eefe3506ae13e8ace811ca544fd6b4a5f0db0a04" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "app_units" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "arrayvec" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "odds 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aster" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "azure" +version = "0.4.4" +source = "git+https://github.com/servo/rust-azure#7b0164d1d79957b2a59e9e103c02a53761c74b9d" +dependencies = [ + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bincode" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bitflags" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "block" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "blurz" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "dbus 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "brotli" +version = "0.3.23" +source = "git+https://github.com/ende76/brotli-rs#d8507fd07e9fa57ed8251d5dc500dcd62df62c7c" + +[[package]] +name = "browserhtml" +version = "0.1.5" +source = "git+https://github.com/browserhtml/browserhtml?branch=gh-pages#146e7909211792ac6d955d87339c547aeb517136" + +[[package]] +name = "byteorder" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "canvas" +version = "0.0.1" +dependencies = [ + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "canvas_traits 0.0.1", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx_traits 0.0.1", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "canvas_traits" +version = "0.0.1" +dependencies = [ + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx_traits 0.0.1", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "plugins 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "caseless" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cfg-if" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cgl" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clipboard" +version = "0.1.2" +source = "git+https://github.com/aweinstock314/rust-clipboard#f4c5c1d3c1759f0a167091405d11af1f9584fb1f" +dependencies = [ + "clipboard-win 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc-foundation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clipboard-win" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cmake" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cocoa" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "color_quant" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "compositing" +version = "0.0.1" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "canvas 0.0.1", + "canvas_traits 0.0.1", + "clipboard 0.1.2 (git+https://github.com/aweinstock314/rust-clipboard)", + "devtools_traits 0.0.1", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gaol 0.0.1 (git+https://github.com/servo/gaol)", + "gfx 0.0.1", + "gfx_traits 0.0.1", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "layout_traits 0.0.1", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "profile_traits 0.0.1", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "script_traits 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender 0.1.0 (git+https://github.com/servo/webrender)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "cookie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "core-foundation" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "core-foundation-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "core-foundation-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "core-graphics" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "core-text" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cssparser" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dbghelp-sys" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dbus" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "debug_unreachable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "deque" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "device" +version = "0.0.1" +source = "git+https://github.com/servo/devices#cac0952154f65b416acef273a6d1099421ce113e" +dependencies = [ + "blurz 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "devtools" +version = "0.0.1" +dependencies = [ + "devtools_traits 0.0.1", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "msg 0.0.1", + "plugins 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", +] + +[[package]] +name = "devtools_traits" +version = "0.0.1" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "msg 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dlib" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libloading 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dwmapi-sys" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dylib" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding-index-japanese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding-index-korean 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding-index-simpchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding-index-singlebyte 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding-index-tradchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding-index-japanese" +version = "1.20141219.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding-index-korean" +version = "1.20141219.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding-index-simpchinese" +version = "1.20141219.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding-index-singlebyte" +version = "1.20141219.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding-index-tradchinese" +version = "1.20141219.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "encoding_index_tests" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "enum_primitive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "env_logger" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "errno" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "euclid" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "expat-sys" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "make-cmd 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "flate2" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "freetype" +version = "0.1.0" +source = "git+https://github.com/servo/rust-freetype#d564ff90a3c69d987f5c015d7ec034cfaee21aff" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fs2" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futf" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gaol" +version = "0.0.1" +source = "git+https://github.com/servo/gaol#545c703ebfe7a3a0d7129eb40981527f5d680860" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gcc" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "gdi32-sys" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "getopts" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "gfx" +version = "0.0.1" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", + "gfx_traits 0.0.1", + "harfbuzz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "plugins 0.0.1", + "profile_traits 0.0.1", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "range 0.0.1", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "simd 0.1.0 (git+https://github.com/huonw/simd)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "style 0.0.1", + "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "xi-unicode 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gfx_traits" +version = "0.0.1" +dependencies = [ + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "msg 0.0.1", + "plugins 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gif" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "color_quant 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lzw 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gl_generator" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gleam" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "glob" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "glx" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "harfbuzz-sys" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hbs-builder" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hbs-common-sys" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hbs-pow" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hbs-pow-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hbs-pow-sys" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hbs-builder 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hbs-common-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heapsize" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heapsize_plugin" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "hpack" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "html5ever" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tendril 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "httparse" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "hyper" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "solicit 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "traitobject 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "idna" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-bidi 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "image" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "enum_primitive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "gif 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "jpeg-decoder 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "png 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "immeta" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inflate" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "io-surface" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "leaky-cow 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ipc-channel" +version = "0.2.2" +source = "git+https://github.com/servo/ipc-channel#10bed82904d635b2ff6a916872130868cb69b104" +dependencies = [ + "bincode 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jpeg-decoder" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "js" +version = "0.1.2" +source = "git+https://github.com/servo/rust-mozjs#8ad6c1148fd77e5b9dc2ce0f0ab40d4f455f6f4e" +dependencies = [ + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mozjs_sys 0.0.0 (git+https://github.com/servo/mozjs)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "kernel32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "khronos_api" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "language-tags" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "layers" +version = "0.2.4" +source = "git+https://github.com/servo/rust-layers#d7a8a6aa73ec16127042325af4b2d5f9a1fa585d" +dependencies = [ + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "glx 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "io-surface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "layout" +version = "0.0.1" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "azure 0.4.4 (git+https://github.com/servo/rust-azure)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "canvas_traits 0.0.1", + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx 0.0.1", + "gfx_traits 0.0.1", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layout_traits 0.0.1", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "plugins 0.0.1", + "profile_traits 0.0.1", + "range 0.0.1", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "script 0.0.1", + "script_traits 0.0.1", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "style 0.0.1", + "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-bidi 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "layout_traits" +version = "0.0.1" +dependencies = [ + "gfx 0.0.1", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "msg 0.0.1", + "net_traits 0.0.1", + "profile_traits 0.0.1", + "script_traits 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "lazy_static" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "leak" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "leaky-cow" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "leak 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "libloading" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libressl-pnacl-sys" +version = "2.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "pnacl-build-helper 1.4.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libz-sys" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lzw" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "mac" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "make-cmd" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "malloc_buf" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "matches" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memchr" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memmap" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fs2 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mime" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mime_guess" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "miniz-sys" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mozjs_sys" +version = "0.0.0" +source = "git+https://github.com/servo/mozjs#2af5849a97a9f18acd482940ba3fa0c6797ed7eb" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libz-sys 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "msg" +version = "0.0.1" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "plugins 0.0.1", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "net" +version = "0.0.1" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "brotli 0.3.23 (git+https://github.com/ende76/brotli-rs)", + "cookie 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "device 0.0.1 (git+https://github.com/servo/devices)", + "devtools_traits 0.0.1", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "immeta 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mime_guess 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "threadpool 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "tinyfiledialogs 0.1.0 (git+https://github.com/jdm/tinyfiledialogs)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "net2" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "net_traits" +version = "0.0.1" +dependencies = [ + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nodrop" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "odds 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-bigint 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-complex 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-bigint" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-integer 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-complex" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-integer" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-iter" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-integer 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-rational" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-bigint 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-traits" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "num_cpus" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "objc" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "objc-foundation" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "objc_id" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "odds" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "offscreen_gl_context" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "openssl" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys-extras 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "openssl-sys" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libressl-pnacl-sys 2.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "openssl-sys-extras" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "osmesa-sys" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "shared_library 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "phf" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "phf_codegen" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "phf_generator" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "phf_macros" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "phf_shared" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pkg-config" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "plugins" +version = "0.0.1" +dependencies = [ + "tenacious 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pnacl-build-helper" +version = "1.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "tempdir 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "png" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "inflate 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "profile" +version = "0.0.1" +dependencies = [ + "hbs-pow 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "profile_traits 0.0.1", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "task_info 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", +] + +[[package]] +name = "profile_traits" +version = "0.0.1" +dependencies = [ + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "plugins 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quasi" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quasi_codegen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aster 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quasi_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quasi_codegen 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quickersort" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "range" +version = "0.0.1" +dependencies = [ + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rayon" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ref_filter_map" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "ref_slice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex" +version = "0.1.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc-serialize" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scoped_threadpool" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "script" +version = "0.0.1" +dependencies = [ + "angle 0.1.0 (git+https://github.com/emilio/angle?branch=servo)", + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "canvas 0.0.1", + "canvas_traits 0.0.1", + "caseless 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "devtools_traits 0.0.1", + "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx_traits 0.0.1", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "html5ever 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "image 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_macros 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "profile_traits 0.0.1", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "ref_filter_map 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ref_slice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.69 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "script_traits 0.0.1", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "style 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "tinyfiledialogs 0.1.0 (git+https://github.com/jdm/tinyfiledialogs)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", + "websocket 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", + "xml5ever 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "script_traits" +version = "0.0.1" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "canvas_traits 0.0.1", + "devtools_traits 0.0.1", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gfx_traits 0.0.1", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net_traits 0.0.1", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "profile_traits 0.0.1", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", +] + +[[package]] +name = "selectors" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quickersort 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_codegen" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aster 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quasi_macros 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_macros" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde_codegen 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "servo" +version = "0.0.1" +dependencies = [ + "browserhtml 0.1.5 (git+https://github.com/browserhtml/browserhtml?branch=gh-pages)", + "canvas 0.0.1", + "canvas_traits 0.0.1", + "compositing 0.0.1", + "devtools 0.0.1", + "devtools_traits 0.0.1", + "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gaol 0.0.1 (git+https://github.com/servo/gaol)", + "gfx 0.0.1", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "layers 0.2.4 (git+https://github.com/servo/rust-layers)", + "layout 0.0.1", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "msg 0.0.1", + "net 0.0.1", + "net_traits 0.0.1", + "profile 0.0.1", + "profile_traits 0.0.1", + "script 0.0.1", + "script_traits 0.0.1", + "style 0.0.1", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", + "webrender 0.1.0 (git+https://github.com/servo/webrender)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "servo-egl" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "servo-fontconfig" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-fontconfig-sys 2.11.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "servo-fontconfig-sys" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "expat-sys 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "servo-freetype-sys" +version = "2.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "servo-glutin" +version = "0.4.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cocoa 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dwmapi-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "osmesa-sys 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "shared_library 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "shell32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-kbd 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-window 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "x11-dl 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "servo-skia" +version = "0.20130412.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "expat-sys 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "glx 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "io-surface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-glutin 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "shared_library" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "shell32-sys" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "simd" +version = "0.1.0" +source = "git+https://github.com/huonw/simd#03de1cd0a278ab902b4beb402d57505f3797ea56" + +[[package]] +name = "smallvec" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "solicit" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hpack 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "string_cache" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_generator 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "style" +version = "0.0.1" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "selectors 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "style_traits 0.0.1", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", +] + +[[package]] +name = "style_traits" +version = "0.0.1" +dependencies = [ + "cssparser 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "util 0.0.1", +] + +[[package]] +name = "task_info" +version = "0.0.1" +dependencies = [ + "gcc 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempdir" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempfile" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tenacious" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "tendril" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", + "futf 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "utf-8 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread-id" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "threadpool" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "time" +version = "0.1.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tinyfiledialogs" +version = "0.1.0" +source = "git+https://github.com/jdm/tinyfiledialogs#686abf781f30b360a4c265964fd3744e2f61cf2d" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "traitobject" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "typeable" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicase" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicode-bidi" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicode-normalization" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-script" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "harfbuzz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unreachable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "url" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "idna 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "user32-sys" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf-8" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "util" +version = "0.0.1" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "js 0.1.2 (git+https://github.com/servo/rust-mozjs)", + "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "plugins 0.0.1", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "uuid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wayland-client" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-scanner 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-sys 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wayland-kbd" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wayland-scanner" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "xml-rs 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wayland-sys" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "dlib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wayland-window" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wayland-client 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "webrender" +version = "0.1.0" +source = "git+https://github.com/servo/webrender#e3ee5d46093d0b2bb3c14398914bc9a7a36bcfbd" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-text 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "scoped_threadpool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", + "webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)", +] + +[[package]] +name = "webrender_traits" +version = "0.1.0" +source = "git+https://github.com/servo/webrender_traits#47daae0b38a4f507584a51538854d7da93b6e987" +dependencies = [ + "app_units 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.2.2 (git+https://github.com/servo/ipc-channel)", + "offscreen_gl_context 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_macros 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "websocket" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "x11" +version = "2.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "x11-dl" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "dylib 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "xi-unicode" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "xml-rs" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "xml5ever" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tendril 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", +] + From 518558e89eed050bdea23e61538f08ad5af05a9f Mon Sep 17 00:00:00 2001 From: Adrian Utrilla Date: Sun, 8 May 2016 00:33:11 +0200 Subject: [PATCH 2/5] Updated failing tests --- tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini | 4 ++-- .../attribs/gl-bindAttribLocation-aliasing.html.ini | 3 +++ .../attribs/gl-bindAttribLocation-matrix.html.ini | 3 +++ .../conformance/attribs/gl-matrix-attributes.html.ini | 1 + .../conformance/misc/object-deletion-behaviour.html.ini | 3 ++- .../conformance/ogles/GL/array/array_001_to_006.html.ini | 7 ++++++- .../ogles/GL/biConstants/biConstants_001_to_008.html.ini | 4 +++- .../ogles/GL/biConstants/biConstants_009_to_016.html.ini | 4 +++- .../GL/biuDepthRange/biuDepthRange_001_to_002.html.ini | 4 +++- .../ogles/GL/control_flow/control_flow_001_to_008.html.ini | 4 +++- .../ogles/GL/control_flow/control_flow_009_to_010.html.ini | 4 +++- .../ogles/GL/discard/discard_001_to_002.html.ini | 4 +++- .../conformance/ogles/GL/mat/mat_001_to_008.html.ini | 4 +++- .../conformance/ogles/GL/mat/mat_009_to_016.html.ini | 4 +++- .../conformance/ogles/GL/mat/mat_017_to_024.html.ini | 4 +++- .../conformance/ogles/GL/mat/mat_025_to_032.html.ini | 4 +++- .../conformance/ogles/GL/mat/mat_033_to_040.html.ini | 4 +++- .../conformance/ogles/GL/mat/mat_041_to_046.html.ini | 4 +++- .../conformance/ogles/GL/mat3/mat3_001_to_006.html.ini | 7 ++++++- .../ogles/GL/operators/operators_001_to_008.html.ini | 4 +++- .../ogles/GL/operators/operators_009_to_016.html.ini | 4 +++- .../ogles/GL/operators/operators_017_to_024.html.ini | 4 +++- .../ogles/GL/operators/operators_025_to_026.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_001_to_008.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_009_to_016.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_017_to_024.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_025_to_032.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_033_to_040.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_041_to_048.html.ini | 4 +++- .../conformance/ogles/GL/struct/struct_049_to_056.html.ini | 4 +++- .../conformance/ogles/GL/vec/vec_001_to_008.html.ini | 4 +++- .../conformance/ogles/GL/vec/vec_009_to_016.html.ini | 4 +++- .../conformance/ogles/GL/vec/vec_017_to_018.html.ini | 4 +++- .../conformance/state/gl-geterror.html.ini | 4 +++- ...mage-and-sub-image-2d-with-image-data-rgba4444.html.ini | 7 ++++--- .../conformance/textures/texture-active-bind.html.ini | 6 ++++++ .../conformance/textures/texture-complete.html.ini | 2 -- .../conformance/textures/texture-npot-video.html.ini | 5 +++-- .../textures/texture-sub-image-cube-maps.html.ini | 2 -- .../texture-transparent-pixels-initialized.html.ini | 4 +++- .../conformance/textures/texture-upload-cube-maps.html.ini | 2 -- .../conformance/typedarrays/data-view-test.html.ini | 2 +- .../conformance/uniforms/null-uniform-location.html.ini | 2 -- .../conformance/uniforms/uniform-default-values.html.ini | 5 +++-- .../conformance/uniforms/uniform-location.html.ini | 5 +++-- .../uniforms/uniform-values-per-program.html.ini | 2 -- 46 files changed, 127 insertions(+), 53 deletions(-) create mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini create mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini index 0d819131e699..f50d455b49d2 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini @@ -1,2 +1,2 @@ -disabled: - if os == "linux": https://github.com/servo/servo/issues/9331 +;disabled: +; if os == "linux": https://github.com/servo/servo/issues/9331 diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini new file mode 100644 index 000000000000..9a3b253b3744 --- /dev/null +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini @@ -0,0 +1,3 @@ +[gl-bindAttribLocation-aliasing.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini new file mode 100644 index 000000000000..0b675a8705dd --- /dev/null +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini @@ -0,0 +1,3 @@ +[gl-bindAttribLocation-matrix.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini index b8fda613d6de..d19d16ef9211 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini @@ -1,5 +1,6 @@ [gl-matrix-attributes.html] type: testharness + expected: TIMEOUT [WebGL test #2: glProgram should be non-null. Was null] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini index 2dc8b16d5107..e364d3fd02f0 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini @@ -1,7 +1,8 @@ [object-deletion-behaviour.html] type: testharness expected: - if os == "linux": TIMEOUT + if os == "linux": CRASH + if os == "osx": CRASH [WebGL test #9: gl.isShader(vertexShader) should be true. Threw exception TypeError: gl.isShader is not a function] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini index b1e376397e76..7b419ba20e8e 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini @@ -1,3 +1,8 @@ [array_001_to_006.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + + [WebGL test #1: INVALID_OPERATION generated setting uniform: new_mad2] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini index dbd3febb05de..9706a5fa22ca 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini @@ -1,3 +1,5 @@ [biConstants_001_to_008.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini index 8d0a1a68598a..63ebc05cef02 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini @@ -1,3 +1,5 @@ [biConstants_009_to_016.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini index 60f8f028d7e3..6fd8c7682f55 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini @@ -1,3 +1,5 @@ [biuDepthRange_001_to_002.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini index c08051c4d6fe..ebf2c792c3d2 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini @@ -1,3 +1,5 @@ [control_flow_001_to_008.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini index 8933e530393d..15497a961674 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini @@ -1,3 +1,5 @@ [control_flow_009_to_010.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini index 7cb99a8d3268..4a299170bdf2 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini @@ -1,3 +1,5 @@ [discard_001_to_002.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini index c539213ab61d..da2af56739dd 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini @@ -1,3 +1,5 @@ [mat_001_to_008.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini index 16e59255df04..fc38e89b7105 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini @@ -1,3 +1,5 @@ [mat_009_to_016.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini index d5ad260ca31f..9b8bc7ee58bf 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini @@ -1,3 +1,5 @@ [mat_017_to_024.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini index 2fa836d82aac..2260186713b8 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini @@ -1,3 +1,5 @@ [mat_025_to_032.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini index 5f6754da21be..e4b477ee2d1d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini @@ -1,3 +1,5 @@ [mat_033_to_040.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini index f95378fb3313..90c08eb4f308 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini @@ -1,3 +1,5 @@ [mat_041_to_046.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini index e209cca76275..f99e48134764 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini @@ -1,3 +1,8 @@ [mat3_001_to_006.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + + [WebGL test #1: INVALID_OPERATION generated setting uniform: testmat3] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini index 5c3f70e0dcc1..1fa27f77c4ce 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini @@ -1,3 +1,5 @@ [operators_001_to_008.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini index fad2a7719e13..66d71c0f8fb6 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini @@ -1,3 +1,5 @@ [operators_009_to_016.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini index 9cdec6f0802d..06bd61da165c 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini @@ -1,3 +1,5 @@ [operators_017_to_024.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini index e9fe47d50386..441430ebea99 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini @@ -1,3 +1,5 @@ [operators_025_to_026.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini index 95e9d74e2db9..5c4a2a492061 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini @@ -1,3 +1,5 @@ [struct_001_to_008.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini index 1eb8b4ead5b7..fa6d28cc3d85 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini @@ -1,3 +1,5 @@ [struct_009_to_016.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini index 7f47355a9d97..4872fb87b8df 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini @@ -1,3 +1,5 @@ [struct_017_to_024.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini index 9e39038c00f0..05856e134851 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini @@ -1,3 +1,5 @@ [struct_025_to_032.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini index c9e8c77b73b7..b6f93674bc62 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini @@ -1,3 +1,5 @@ [struct_033_to_040.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini index 827f29577736..a957628d4b32 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini @@ -1,3 +1,5 @@ [struct_041_to_048.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini index a6b396fb682b..380456cf02ea 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini @@ -1,3 +1,5 @@ [struct_049_to_056.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini index b279c8048dd7..15efafbf7f07 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini @@ -1,3 +1,5 @@ [vec_001_to_008.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini index 40589ea2f5e3..2fc508c44649 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini @@ -1,3 +1,5 @@ [vec_009_to_016.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini index 7353b1ae01ae..f2e2cbcc4b62 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini @@ -1,3 +1,5 @@ [vec_017_to_018.html] type: testharness - expected: TIMEOUT + [WebGL test #0: INVALID_OPERATION generated setting uniform: result] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini index 10e80a72366b..08636ae035bd 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini @@ -1,7 +1,9 @@ [gl-geterror.html] type: testharness expected: - if os == "mac": CRASH + if os == "osx": TIMEOUT + if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): CRASH + if debug and (os == "linux") and (version == " ") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): CRASH [WebGL test #0: Unable to fetch WebGL rendering context for Canvas] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini index 7bd16f7ec645..bd4d590468d8 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini @@ -1,8 +1,9 @@ [tex-image-and-sub-image-2d-with-image-data-rgba4444.html] type: testharness + expected: + if os == "osx": CRASH + if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT + if debug and (os == "linux") and (version == " ") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT [WebGL test #0: Unable to fetch WebGL rendering context for Canvas] expected: FAIL - [WebGL test #0: at (0, 0) expected: 0,255,0,255 was 0,0,255,255] - expected: FAIL - diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini index f9bf354eb2af..fd141b9c695b 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini @@ -3,3 +3,9 @@ [WebGL test #4: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL + [WebGL test #4: getError expected: NO_ERROR. Was INVALID_OPERATION : ] + expected: FAIL + + [WebGL test #5: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini index 521d6449e3a1..76ee42aadcfd 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini @@ -1,7 +1,5 @@ [texture-complete.html] type: testharness - expected: - if os == "linux": CRASH [WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini index b20314b47d27..71a660b7e83a 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini @@ -1,5 +1,6 @@ [texture-npot-video.html] type: testharness expected: - if os == "linux": CRASH - if os == "mac": TIMEOUT + if os == "linux": TIMEOUT + if os == "osx": TIMEOUT + if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini index 4766a121d4e1..41d4267c9e69 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini @@ -1,7 +1,5 @@ [texture-sub-image-cube-maps.html] type: testharness - expected: - if os == "linux": CRASH [WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini index daef2612d9fc..93faebf1b78d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini @@ -1,4 +1,6 @@ [texture-transparent-pixels-initialized.html] type: testharness expected: - if os == "linux": CRASH + if os == "linux": TIMEOUT + if os == "osx": TIMEOUT + if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini index 78c55a6b51c6..99291ec52ffb 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini @@ -1,7 +1,5 @@ [texture-upload-cube-maps.html] type: testharness - expected: - if os == "linux": CRASH [WebGL test #2: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini index e921f03979de..5280b18643a7 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini @@ -1,4 +1,4 @@ [data-view-test.html] type: testharness expected: - if os == "linux": CRASH + if os == "osx": TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini index 266f0cc8d7a5..2183438b55f1 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini @@ -1,7 +1,5 @@ [null-uniform-location.html] type: testharness - expected: - if os == "linux": CRASH [WebGL test #6: callUniformFunction('uniform1i') should be undefined. Threw exception TypeError: func is undefined] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini index 993c55127dcf..16b5e9c8d6c9 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini @@ -1,5 +1,6 @@ [uniform-default-values.html] type: testharness expected: - if os == "linux": CRASH - if os == "mac": TIMEOUT + if os == "linux": TIMEOUT + if os == "osx": TIMEOUT + if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini index d8c775874664..05a1b02495e2 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini @@ -1,7 +1,5 @@ [uniform-location.html] type: testharness - expected: - if os == "linux": CRASH [WebGL test #1: contextA.uniformMatrix4fv(locationA, false, mat) threw exception TypeError: contextA.uniformMatrix4fv is not a function] expected: FAIL @@ -53,3 +51,6 @@ [WebGL test #25: contextA.getUniform(programS, locationArray0) should be 123. Threw exception TypeError: contextA.getUniform is not a function] expected: FAIL + [WebGL test #3: getError expected: NO_ERROR. Was INVALID_OPERATION : after evaluating: contextA.uniformMatrix4fv(locationA, false, mat)] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini index 083f318219f4..03cd6ea4a3b4 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini @@ -1,7 +1,5 @@ [uniform-values-per-program.html] type: testharness - expected: - if os == "linux": CRASH [WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL From d4d65831d8a7c97cdb004f7921d4967e5a892787 Mon Sep 17 00:00:00 2001 From: Adrian Utrilla Date: Sun, 8 May 2016 12:09:04 +0200 Subject: [PATCH 3/5] Further updated test expectations --- .../gl-bindAttribLocation-aliasing.html.ini | 3 - .../gl-bindAttribLocation-matrix.html.ini | 3 - .../attribs/gl-matrix-attributes.html.ini | 612 ------------------ .../operators/operators_001_to_008.html.ini | 2 +- .../GL/struct/struct_001_to_008.html.ini | 2 +- .../GL/struct/struct_017_to_024.html.ini | 2 +- .../ogles/GL/vec/vec_009_to_016.html.ini | 2 +- .../rendering/many-draw-calls.html.ini | 2 +- 8 files changed, 5 insertions(+), 623 deletions(-) delete mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini delete mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini delete mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini deleted file mode 100644 index 9a3b253b3744..000000000000 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[gl-bindAttribLocation-aliasing.html] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini deleted file mode 100644 index 0b675a8705dd..000000000000 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[gl-bindAttribLocation-matrix.html] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini deleted file mode 100644 index d19d16ef9211..000000000000 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini +++ /dev/null @@ -1,612 +0,0 @@ -[gl-matrix-attributes.html] - type: testharness - expected: TIMEOUT - [WebGL test #2: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #3: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #4: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #6: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #8: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #10: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #12: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #14: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #16: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #18: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #20: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #22: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #24: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #26: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #28: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #30: vec_14 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #523: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #524: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #525: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #526: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #529: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #532: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #535: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #538: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #541: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #544: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #547: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #550: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #553: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #556: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #559: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #562: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #608: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #609: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #610: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #611: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #614: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #617: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #620: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #623: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #626: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #629: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #632: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #635: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #638: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #641: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #644: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #647: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #693: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #694: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #695: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #696: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #699: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #702: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #705: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #708: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #711: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #714: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #717: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #720: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #723: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #726: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #729: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #732: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #778: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #779: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #780: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #781: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #784: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #787: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #790: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #793: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #796: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #799: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #802: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #805: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #808: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #811: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #814: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #817: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #863: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #864: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #865: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #866: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #869: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #872: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #875: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #878: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #881: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #884: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #887: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #890: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #893: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #896: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #899: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #902: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #948: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #949: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #950: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #951: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #954: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #957: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #960: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #963: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #966: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #969: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #972: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #975: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #978: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #981: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #984: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #987: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1033: Load shader with 13 vectors and 1 matrix] - expected: FAIL - - [WebGL test #1034: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #1035: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #1036: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1039: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1042: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1045: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1048: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1051: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1054: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1057: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1060: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1063: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1066: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1069: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1072: vec_13 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1075: Load shader with 12 vectors and 1 matrix] - expected: FAIL - - [WebGL test #1076: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #1077: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #1078: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1082: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1086: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1090: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1094: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1098: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1102: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1106: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1110: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1114: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1118: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1122: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1126: Load shader with 12 vectors and 1 matrix] - expected: FAIL - - [WebGL test #1127: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #1128: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #1129: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1133: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1137: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1141: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1145: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1149: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1153: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1157: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1161: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1165: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1169: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1173: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1177: Load shader with 12 vectors and 1 matrix] - expected: FAIL - - [WebGL test #1178: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #1179: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #1180: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1184: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1188: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1192: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1196: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1200: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1204: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1208: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1212: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1216: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1220: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1224: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1228: Load shader with 12 vectors and 1 matrix] - expected: FAIL - - [WebGL test #1229: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #1230: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #1231: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1235: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1239: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1243: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1247: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1251: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1255: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1259: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1263: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1267: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1271: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1275: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1279: Load shader with 12 vectors and 1 matrix] - expected: FAIL - - [WebGL test #1280: glProgram should be non-null. Was null] - expected: FAIL - - [WebGL test #1281: attribMatrix > -1 should be true. Was false.] - expected: FAIL - - [WebGL test #1282: vec_1 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1286: vec_2 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1290: vec_3 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1294: vec_4 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1298: vec_5 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1302: vec_6 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1306: vec_7 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1310: vec_8 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1314: vec_9 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1318: vec_10 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1322: vec_11 attribute location: -1. Should not be -1] - expected: FAIL - - [WebGL test #1326: vec_12 attribute location: -1. Should not be -1] - expected: FAIL - diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini index 1fa27f77c4ce..a68675161b0e 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini @@ -1,5 +1,5 @@ [operators_001_to_008.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini index 5c4a2a492061..722e00cb6c6a 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini @@ -1,5 +1,5 @@ [struct_001_to_008.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini index 4872fb87b8df..f6c742498b5d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini @@ -1,5 +1,5 @@ [struct_017_to_024.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini index 2fc508c44649..c2a8cbb20bb6 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini @@ -1,5 +1,5 @@ [vec_009_to_016.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini index 1de6aa8630af..d07ab7b640d8 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini @@ -1,6 +1,6 @@ [many-draw-calls.html] type: testharness - expected: TIMEOUT + expected: OK [WebGL test #0: failed to create test program] expected: FAIL From d0e374ac2803565c5a2e1c50d6d0f9d522440d6e Mon Sep 17 00:00:00 2001 From: Adrian Utrilla Date: Sun, 24 Jul 2016 11:18:19 +0000 Subject: [PATCH 4/5] Revert "Further updated test expectations" This reverts commit 876ae91d2a33394f3a7666d597e35aacefbcfc0b. --- .../gl-bindAttribLocation-aliasing.html.ini | 3 + .../gl-bindAttribLocation-matrix.html.ini | 3 + .../attribs/gl-matrix-attributes.html.ini | 612 ++++++++++++++++++ .../operators/operators_001_to_008.html.ini | 2 +- .../GL/struct/struct_001_to_008.html.ini | 2 +- .../GL/struct/struct_017_to_024.html.ini | 2 +- .../ogles/GL/vec/vec_009_to_016.html.ini | 2 +- .../rendering/many-draw-calls.html.ini | 2 +- 8 files changed, 623 insertions(+), 5 deletions(-) create mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini create mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini create mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini new file mode 100644 index 000000000000..9a3b253b3744 --- /dev/null +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini @@ -0,0 +1,3 @@ +[gl-bindAttribLocation-aliasing.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini new file mode 100644 index 000000000000..0b675a8705dd --- /dev/null +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini @@ -0,0 +1,3 @@ +[gl-bindAttribLocation-matrix.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini new file mode 100644 index 000000000000..d19d16ef9211 --- /dev/null +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini @@ -0,0 +1,612 @@ +[gl-matrix-attributes.html] + type: testharness + expected: TIMEOUT + [WebGL test #2: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #3: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #4: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #6: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #8: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #10: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #12: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #14: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #16: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #18: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #20: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #22: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #24: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #26: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #28: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #30: vec_14 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #523: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #524: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #525: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #526: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #529: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #532: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #535: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #538: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #541: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #544: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #547: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #550: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #553: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #556: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #559: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #562: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #608: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #609: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #610: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #611: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #614: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #617: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #620: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #623: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #626: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #629: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #632: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #635: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #638: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #641: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #644: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #647: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #693: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #694: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #695: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #696: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #699: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #702: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #705: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #708: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #711: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #714: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #717: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #720: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #723: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #726: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #729: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #732: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #778: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #779: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #780: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #781: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #784: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #787: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #790: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #793: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #796: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #799: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #802: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #805: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #808: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #811: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #814: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #817: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #863: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #864: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #865: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #866: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #869: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #872: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #875: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #878: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #881: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #884: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #887: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #890: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #893: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #896: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #899: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #902: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #948: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #949: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #950: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #951: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #954: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #957: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #960: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #963: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #966: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #969: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #972: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #975: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #978: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #981: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #984: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #987: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1033: Load shader with 13 vectors and 1 matrix] + expected: FAIL + + [WebGL test #1034: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #1035: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #1036: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1039: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1042: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1045: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1048: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1051: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1054: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1057: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1060: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1063: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1066: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1069: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1072: vec_13 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1075: Load shader with 12 vectors and 1 matrix] + expected: FAIL + + [WebGL test #1076: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #1077: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #1078: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1082: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1086: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1090: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1094: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1098: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1102: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1106: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1110: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1114: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1118: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1122: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1126: Load shader with 12 vectors and 1 matrix] + expected: FAIL + + [WebGL test #1127: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #1128: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #1129: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1133: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1137: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1141: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1145: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1149: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1153: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1157: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1161: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1165: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1169: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1173: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1177: Load shader with 12 vectors and 1 matrix] + expected: FAIL + + [WebGL test #1178: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #1179: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #1180: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1184: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1188: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1192: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1196: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1200: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1204: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1208: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1212: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1216: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1220: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1224: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1228: Load shader with 12 vectors and 1 matrix] + expected: FAIL + + [WebGL test #1229: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #1230: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #1231: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1235: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1239: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1243: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1247: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1251: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1255: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1259: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1263: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1267: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1271: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1275: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1279: Load shader with 12 vectors and 1 matrix] + expected: FAIL + + [WebGL test #1280: glProgram should be non-null. Was null] + expected: FAIL + + [WebGL test #1281: attribMatrix > -1 should be true. Was false.] + expected: FAIL + + [WebGL test #1282: vec_1 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1286: vec_2 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1290: vec_3 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1294: vec_4 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1298: vec_5 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1302: vec_6 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1306: vec_7 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1310: vec_8 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1314: vec_9 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1318: vec_10 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1322: vec_11 attribute location: -1. Should not be -1] + expected: FAIL + + [WebGL test #1326: vec_12 attribute location: -1. Should not be -1] + expected: FAIL + diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini index a68675161b0e..1fa27f77c4ce 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini @@ -1,5 +1,5 @@ [operators_001_to_008.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: TIMEOUT + expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini index 722e00cb6c6a..5c4a2a492061 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini @@ -1,5 +1,5 @@ [struct_001_to_008.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: TIMEOUT + expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini index f6c742498b5d..4872fb87b8df 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini @@ -1,5 +1,5 @@ [struct_017_to_024.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: TIMEOUT + expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini index c2a8cbb20bb6..2fc508c44649 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini @@ -1,5 +1,5 @@ [vec_009_to_016.html] type: testharness [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: TIMEOUT + expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini index d07ab7b640d8..1de6aa8630af 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/rendering/many-draw-calls.html.ini @@ -1,6 +1,6 @@ [many-draw-calls.html] type: testharness - expected: OK + expected: TIMEOUT [WebGL test #0: failed to create test program] expected: FAIL From daf53accb7d1cac2643cc63aaac8300c7c1c1b4d Mon Sep 17 00:00:00 2001 From: Adrian Utrilla Date: Sun, 24 Jul 2016 11:18:29 +0000 Subject: [PATCH 5/5] Revert "Updated failing tests" This reverts commit b5293c2267dbe055bf2fef66de863adcfdfd9208. --- .../interfaces/HTMLElement/HTMLTrackElement/src.html.ini | 1 - tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini | 4 ++-- .../attribs/gl-bindAttribLocation-aliasing.html.ini | 3 --- .../attribs/gl-bindAttribLocation-matrix.html.ini | 3 --- .../conformance/attribs/gl-matrix-attributes.html.ini | 1 - .../conformance/misc/object-deletion-behaviour.html.ini | 2 +- .../conformance/ogles/GL/array/array_001_to_006.html.ini | 7 +------ .../ogles/GL/biConstants/biConstants_001_to_008.html.ini | 4 +--- .../ogles/GL/biConstants/biConstants_009_to_016.html.ini | 4 +--- .../GL/biuDepthRange/biuDepthRange_001_to_002.html.ini | 4 +--- .../ogles/GL/control_flow/control_flow_001_to_008.html.ini | 4 +--- .../ogles/GL/control_flow/control_flow_009_to_010.html.ini | 4 +--- .../ogles/GL/discard/discard_001_to_002.html.ini | 4 +--- .../conformance/ogles/GL/mat/mat_001_to_008.html.ini | 4 +--- .../conformance/ogles/GL/mat/mat_009_to_016.html.ini | 4 +--- .../conformance/ogles/GL/mat/mat_017_to_024.html.ini | 4 +--- .../conformance/ogles/GL/mat/mat_025_to_032.html.ini | 4 +--- .../conformance/ogles/GL/mat/mat_033_to_040.html.ini | 4 +--- .../conformance/ogles/GL/mat/mat_041_to_046.html.ini | 4 +--- .../conformance/ogles/GL/mat3/mat3_001_to_006.html.ini | 7 +------ .../ogles/GL/operators/operators_001_to_008.html.ini | 4 +--- .../ogles/GL/operators/operators_009_to_016.html.ini | 4 +--- .../ogles/GL/operators/operators_017_to_024.html.ini | 4 +--- .../ogles/GL/operators/operators_025_to_026.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_001_to_008.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_009_to_016.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_017_to_024.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_025_to_032.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_033_to_040.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_041_to_048.html.ini | 4 +--- .../conformance/ogles/GL/struct/struct_049_to_056.html.ini | 4 +--- .../conformance/ogles/GL/vec/vec_001_to_008.html.ini | 4 +--- .../conformance/ogles/GL/vec/vec_009_to_016.html.ini | 4 +--- .../conformance/ogles/GL/vec/vec_017_to_018.html.ini | 4 +--- .../conformance/state/gl-geterror.html.ini | 1 - ...mage-and-sub-image-2d-with-image-data-rgba4444.html.ini | 1 - .../conformance/textures/texture-active-bind.html.ini | 6 ------ .../conformance/textures/texture-complete.html.ini | 2 ++ .../conformance/textures/texture-npot-video.html.ini | 2 +- .../textures/texture-sub-image-cube-maps.html.ini | 2 ++ .../texture-transparent-pixels-initialized.html.ini | 2 +- .../conformance/textures/texture-upload-cube-maps.html.ini | 2 ++ .../conformance/typedarrays/data-view-test.html.ini | 1 + .../conformance/uniforms/null-uniform-location.html.ini | 2 ++ .../conformance/uniforms/uniform-default-values.html.ini | 2 +- .../conformance/uniforms/uniform-location.html.ini | 5 ++--- .../uniforms/uniform-values-per-program.html.ini | 2 ++ .../mozilla/meta/mozilla/interface_member_exposed.html.ini | 3 ++- 48 files changed, 49 insertions(+), 116 deletions(-) delete mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini delete mode 100644 tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini diff --git a/tests/wpt/metadata/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src.html.ini index ac3e73eb6d14..74842c215ac4 100644 --- a/tests/wpt/metadata/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src.html.ini +++ b/tests/wpt/metadata/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src.html.ini @@ -26,4 +26,3 @@ [HTMLTrackElement.src resolvable value in content attribute] expected: FAIL - diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini index f50d455b49d2..0d819131e699 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/__dir__.ini @@ -1,2 +1,2 @@ -;disabled: -; if os == "linux": https://github.com/servo/servo/issues/9331 +disabled: + if os == "linux": https://github.com/servo/servo/issues/9331 diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini deleted file mode 100644 index 9a3b253b3744..000000000000 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-aliasing.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[gl-bindAttribLocation-aliasing.html] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini deleted file mode 100644 index 0b675a8705dd..000000000000 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-bindAttribLocation-matrix.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[gl-bindAttribLocation-matrix.html] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini index d19d16ef9211..b8fda613d6de 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/attribs/gl-matrix-attributes.html.ini @@ -1,6 +1,5 @@ [gl-matrix-attributes.html] type: testharness - expected: TIMEOUT [WebGL test #2: glProgram should be non-null. Was null] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini index e364d3fd02f0..fa6315142ba9 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/misc/object-deletion-behaviour.html.ini @@ -1,7 +1,7 @@ [object-deletion-behaviour.html] type: testharness expected: - if os == "linux": CRASH + if os == "linux": TIMEOUT if os == "osx": CRASH [WebGL test #9: gl.isShader(vertexShader) should be true. Threw exception TypeError: gl.isShader is not a function] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini index 7b419ba20e8e..b1e376397e76 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/array/array_001_to_006.html.ini @@ -1,8 +1,3 @@ [array_001_to_006.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - - [WebGL test #1: INVALID_OPERATION generated setting uniform: new_mad2] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini index 9706a5fa22ca..dbd3febb05de 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_001_to_008.html.ini @@ -1,5 +1,3 @@ [biConstants_001_to_008.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini index 63ebc05cef02..8d0a1a68598a 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biConstants/biConstants_009_to_016.html.ini @@ -1,5 +1,3 @@ [biConstants_009_to_016.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini index 6fd8c7682f55..60f8f028d7e3 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html.ini @@ -1,5 +1,3 @@ [biuDepthRange_001_to_002.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini index ebf2c792c3d2..c08051c4d6fe 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_001_to_008.html.ini @@ -1,5 +1,3 @@ [control_flow_001_to_008.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini index 15497a961674..8933e530393d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/control_flow/control_flow_009_to_010.html.ini @@ -1,5 +1,3 @@ [control_flow_009_to_010.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini index 4a299170bdf2..7cb99a8d3268 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/discard/discard_001_to_002.html.ini @@ -1,5 +1,3 @@ [discard_001_to_002.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini index da2af56739dd..c539213ab61d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_001_to_008.html.ini @@ -1,5 +1,3 @@ [mat_001_to_008.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini index fc38e89b7105..16e59255df04 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_009_to_016.html.ini @@ -1,5 +1,3 @@ [mat_009_to_016.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini index 9b8bc7ee58bf..d5ad260ca31f 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_017_to_024.html.ini @@ -1,5 +1,3 @@ [mat_017_to_024.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini index 2260186713b8..2fa836d82aac 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_025_to_032.html.ini @@ -1,5 +1,3 @@ [mat_025_to_032.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini index e4b477ee2d1d..5f6754da21be 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_033_to_040.html.ini @@ -1,5 +1,3 @@ [mat_033_to_040.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini index 90c08eb4f308..f95378fb3313 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat/mat_041_to_046.html.ini @@ -1,5 +1,3 @@ [mat_041_to_046.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini index f99e48134764..e209cca76275 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/mat3/mat3_001_to_006.html.ini @@ -1,8 +1,3 @@ [mat3_001_to_006.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - - [WebGL test #1: INVALID_OPERATION generated setting uniform: testmat3] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini index 1fa27f77c4ce..5c3f70e0dcc1 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_001_to_008.html.ini @@ -1,5 +1,3 @@ [operators_001_to_008.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini index 66d71c0f8fb6..fad2a7719e13 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_009_to_016.html.ini @@ -1,5 +1,3 @@ [operators_009_to_016.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini index 06bd61da165c..9cdec6f0802d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_017_to_024.html.ini @@ -1,5 +1,3 @@ [operators_017_to_024.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini index 441430ebea99..e9fe47d50386 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/operators/operators_025_to_026.html.ini @@ -1,5 +1,3 @@ [operators_025_to_026.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini index 5c4a2a492061..95e9d74e2db9 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_001_to_008.html.ini @@ -1,5 +1,3 @@ [struct_001_to_008.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini index fa6d28cc3d85..1eb8b4ead5b7 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_009_to_016.html.ini @@ -1,5 +1,3 @@ [struct_009_to_016.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini index 4872fb87b8df..7f47355a9d97 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_017_to_024.html.ini @@ -1,5 +1,3 @@ [struct_017_to_024.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini index 05856e134851..9e39038c00f0 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_025_to_032.html.ini @@ -1,5 +1,3 @@ [struct_025_to_032.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini index b6f93674bc62..c9e8c77b73b7 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_033_to_040.html.ini @@ -1,5 +1,3 @@ [struct_033_to_040.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini index a957628d4b32..827f29577736 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_041_to_048.html.ini @@ -1,5 +1,3 @@ [struct_041_to_048.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini index 380456cf02ea..a6b396fb682b 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/struct/struct_049_to_056.html.ini @@ -1,5 +1,3 @@ [struct_049_to_056.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini index 15efafbf7f07..b279c8048dd7 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_001_to_008.html.ini @@ -1,5 +1,3 @@ [vec_001_to_008.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini index 2fc508c44649..40589ea2f5e3 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_009_to_016.html.ini @@ -1,5 +1,3 @@ [vec_009_to_016.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini index f2e2cbcc4b62..7353b1ae01ae 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/ogles/GL/vec/vec_017_to_018.html.ini @@ -1,5 +1,3 @@ [vec_017_to_018.html] type: testharness - [WebGL test #0: INVALID_OPERATION generated setting uniform: result] - expected: FAIL - + expected: TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini index 08636ae035bd..f6c104283a29 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/state/gl-geterror.html.ini @@ -3,7 +3,6 @@ expected: if os == "osx": TIMEOUT if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): CRASH - if debug and (os == "linux") and (version == " ") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): CRASH [WebGL test #0: Unable to fetch WebGL rendering context for Canvas] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini index bd4d590468d8..4e219956c91f 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-and-sub-image-2d-with-image-data-rgba4444.html.ini @@ -3,7 +3,6 @@ expected: if os == "osx": CRASH if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT - if debug and (os == "linux") and (version == " ") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT [WebGL test #0: Unable to fetch WebGL rendering context for Canvas] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini index fd141b9c695b..f9bf354eb2af 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-active-bind.html.ini @@ -3,9 +3,3 @@ [WebGL test #4: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL - [WebGL test #4: getError expected: NO_ERROR. Was INVALID_OPERATION : ] - expected: FAIL - - [WebGL test #5: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] - expected: FAIL - diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini index 76ee42aadcfd..521d6449e3a1 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-complete.html.ini @@ -1,5 +1,7 @@ [texture-complete.html] type: testharness + expected: + if os == "linux": CRASH [WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini index 71a660b7e83a..e1efb39e0038 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-npot-video.html.ini @@ -1,6 +1,6 @@ [texture-npot-video.html] type: testharness expected: - if os == "linux": TIMEOUT + if os == "linux": CRASH if os == "osx": TIMEOUT if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini index 41d4267c9e69..4766a121d4e1 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-sub-image-cube-maps.html.ini @@ -1,5 +1,7 @@ [texture-sub-image-cube-maps.html] type: testharness + expected: + if os == "linux": CRASH [WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini index 93faebf1b78d..af306dcf4055 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-transparent-pixels-initialized.html.ini @@ -1,6 +1,6 @@ [texture-transparent-pixels-initialized.html] type: testharness expected: - if os == "linux": TIMEOUT + if os == "linux": CRASH if os == "osx": TIMEOUT if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini index 99291ec52ffb..78c55a6b51c6 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/texture-upload-cube-maps.html.ini @@ -1,5 +1,7 @@ [texture-upload-cube-maps.html] type: testharness + expected: + if os == "linux": CRASH [WebGL test #2: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini index 5280b18643a7..9583bdfc1a5d 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/typedarrays/data-view-test.html.ini @@ -1,4 +1,5 @@ [data-view-test.html] type: testharness expected: + if os == "linux": CRASH if os == "osx": TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini index 2183438b55f1..266f0cc8d7a5 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/null-uniform-location.html.ini @@ -1,5 +1,7 @@ [null-uniform-location.html] type: testharness + expected: + if os == "linux": CRASH [WebGL test #6: callUniformFunction('uniform1i') should be undefined. Threw exception TypeError: func is undefined] expected: FAIL diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini index 16b5e9c8d6c9..7c106c017d39 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-default-values.html.ini @@ -1,6 +1,6 @@ [uniform-default-values.html] type: testharness expected: - if os == "linux": TIMEOUT + if os == "linux": CRASH if os == "osx": TIMEOUT if not debug and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64) and (backend == "cpu"): TIMEOUT diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini index 05a1b02495e2..d8c775874664 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-location.html.ini @@ -1,5 +1,7 @@ [uniform-location.html] type: testharness + expected: + if os == "linux": CRASH [WebGL test #1: contextA.uniformMatrix4fv(locationA, false, mat) threw exception TypeError: contextA.uniformMatrix4fv is not a function] expected: FAIL @@ -51,6 +53,3 @@ [WebGL test #25: contextA.getUniform(programS, locationArray0) should be 123. Threw exception TypeError: contextA.getUniform is not a function] expected: FAIL - [WebGL test #3: getError expected: NO_ERROR. Was INVALID_OPERATION : after evaluating: contextA.uniformMatrix4fv(locationA, false, mat)] - expected: FAIL - diff --git a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini index 03cd6ea4a3b4..083f318219f4 100644 --- a/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini +++ b/tests/wpt/metadata/webgl/conformance-1.0.3/conformance/uniforms/uniform-values-per-program.html.ini @@ -1,5 +1,7 @@ [uniform-values-per-program.html] type: testharness + expected: + if os == "linux": CRASH [WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).] expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/interface_member_exposed.html.ini b/tests/wpt/mozilla/meta/mozilla/interface_member_exposed.html.ini index cb010511bf70..19543bd7a734 100644 --- a/tests/wpt/mozilla/meta/mozilla/interface_member_exposed.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/interface_member_exposed.html.ini @@ -1,3 +1,4 @@ [interface_member_exposed.html] type: testharness - prefs: [dom.testbinding.enabled:true, dom.testbinding.prefcontrolled2.enabled:true] + prefs: [dom.testbinding.enabled:true, + dom.testbinding.prefcontrolled2.enabled:true]