Skip to content

Commit

Permalink
Update url, num_cpus, heapsize, webdriver.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrubeck committed Jan 6, 2017
1 parent 85d3bbd commit 6f3831b
Show file tree
Hide file tree
Showing 11 changed files with 58 additions and 138 deletions.
110 changes: 55 additions & 55 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/webdriver_server/Cargo.toml
Expand Up @@ -26,4 +26,4 @@ servo_config = {path = "../config", features = ["servo"]}
servo_url = {path = "../url", features = ["servo"]}
url = {version = "1.2", features = ["heap_size"]}
uuid = { version = "0.3.1", features = ["v4"] }
webdriver = "0.15"
webdriver = "0.17"
2 changes: 1 addition & 1 deletion components/webdriver_server/lib.rs
Expand Up @@ -89,7 +89,7 @@ pub fn start_server(port: u16, constellation_chan: Sender<ConstellationMsg>) {
let handler = Handler::new(constellation_chan);
thread::Builder::new().name("WebdriverHttpServer".to_owned()).spawn(move || {
let address = SocketAddrV4::new("0.0.0.0".parse().unwrap(), port);
match server::start(SocketAddr::V4(address), handler, extension_routes()) {
match server::start(SocketAddr::V4(address), handler, &extension_routes()) {
Ok(listening) => info!("WebDriver server listening on {}", listening.socket),
Err(_) => panic!("Unable to start WebDriver HTTPD server"),
}
Expand Down
Expand Up @@ -3,3 +3,4 @@
expected: TIMEOUT
[EventSource: Cache-Control 1]
expected: TIMEOUT

8 changes: 0 additions & 8 deletions tests/wpt/metadata/url/a-element-origin-xhtml.xhtml.ini

This file was deleted.

8 changes: 0 additions & 8 deletions tests/wpt/metadata/url/a-element-origin.html.ini

This file was deleted.

18 changes: 0 additions & 18 deletions tests/wpt/metadata/url/a-element-xhtml.xhtml.ini
@@ -1,23 +1,5 @@
[a-element-xhtml.xhtml]
type: testharness
[Parsing: <http://[::127.0.0.1\]> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <http://[0:0:0:0:0:0:13.1.68.3\]> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <#β> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <http://www.google.com/foo?bar=baz# »> against <about:blank>]
expected: FAIL

[Parsing: <data:test# »> against <about:blank>]
expected: FAIL

[Parsing: <http://foo.bar/baz?qux#foo\x08bar> against <about:blank>]
expected: FAIL

[Parsing: <http://10000000000> against <http://other.com/>]
expected: FAIL

Expand Down
18 changes: 0 additions & 18 deletions tests/wpt/metadata/url/a-element.html.ini
@@ -1,23 +1,5 @@
[a-element.html]
type: testharness
[Parsing: <http://[::127.0.0.1\]> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <http://[0:0:0:0:0:0:13.1.68.3\]> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <#β> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <http://www.google.com/foo?bar=baz# »> against <about:blank>]
expected: FAIL

[Parsing: <data:test# »> against <about:blank>]
expected: FAIL

[Parsing: <http://foo.bar/baz?qux#foo\x08bar> against <about:blank>]
expected: FAIL

[Parsing: <http://10000000000> against <http://other.com/>]
expected: FAIL

Expand Down
15 changes: 0 additions & 15 deletions tests/wpt/metadata/url/url-constructor.html.ini
@@ -1,20 +1,5 @@
[url-constructor.html]
type: testharness
[Parsing: <http://[::127.0.0.1\]> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <http://[0:0:0:0:0:0:13.1.68.3\]> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <#β> against <http://example.org/foo/bar>]
expected: FAIL

[Parsing: <http://www.google.com/foo?bar=baz# »> against <about:blank>]
expected: FAIL

[Parsing: <data:test# »> against <about:blank>]
expected: FAIL

[Parsing: <http://foo.bar/baz?qux#foo\x08bar> against <about:blank>]
expected: FAIL

Expand Down
8 changes: 0 additions & 8 deletions tests/wpt/metadata/url/url-origin.html.ini

This file was deleted.

6 changes: 0 additions & 6 deletions tests/wpt/metadata/url/url-setters.html.ini
Expand Up @@ -405,9 +405,3 @@
[<area>: Setting <a:/>.hash = '\x00\x01\t\n\r\x1f !"#$%&'()*+,-./09:;<=>?@AZ[\\\]^_`az{|}~€Éé' Simple percent-encoding; nuls, tabs, and newlines are removed]
expected: FAIL

[URL: Setting <http://example.net>.hash = '%c3%89té' Bytes already percent-encoded are left as-is]
expected: FAIL

[<a>: Setting <http://example.net>.hash = '%c3%89té' Bytes already percent-encoded are left as-is]
expected: FAIL

0 comments on commit 6f3831b

Please sign in to comment.