Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Headers API tests. #12636

Merged
merged 1 commit into from Jul 28, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -17,6 +17,12 @@ skip: true
skip: false
[eventsource]
skip: false
[fetch]
skip: true
[api]
skip: true
[headers]
skip: false
[FileAPI]
skip: false
[hr-time]
@@ -0,0 +1,50 @@
[headers-basic.html]
type: testharness
[Create headers from no parameter]
expected: FAIL

[Create headers from undefined parameter]
expected: FAIL

[Create headers from empty object]
expected: FAIL

[Create headers with sequence]
expected: FAIL

[Create headers with OpenEndedDictionary]
expected: FAIL

[Create headers whith existing headers]
expected: FAIL

[Check append method]
expected: FAIL

[Check set method]
expected: FAIL

[Check has method]
expected: FAIL

[Check delete method]
expected: FAIL

[Check get method]
expected: FAIL

[Check keys method]
expected: FAIL

[Check values method]
expected: FAIL

[Check entries method]
expected: FAIL

[Check Symbol.iterator method]
expected: FAIL

[Check forEach method]
expected: FAIL

@@ -0,0 +1,14 @@
[headers-casing.html]
type: testharness
[Create headers, names use characters with different case]
expected: FAIL

[Check append method, names use characters with different case]
expected: FAIL

[Check set method, names use characters with different case]
expected: FAIL

[Check delete method, names use characters with different case]
expected: FAIL

@@ -0,0 +1,14 @@
[headers-combine.html]
type: testharness
[Create headers using same name for different values]
expected: FAIL

[Check delete and has methods when using same name for different values]
expected: FAIL

[Check set methods when called with already used name]
expected: FAIL

[Check append methods when called with already used name]
expected: FAIL

@@ -0,0 +1,44 @@
[headers-errors.html]
type: testharness
[Check headers get with an invalid name invalidĀ]
expected: FAIL

[Check headers get with an invalid name [object Object\]]
expected: FAIL

[Check headers delete with an invalid name invalidĀ]
expected: FAIL

[Check headers delete with an invalid name [object Object\]]
expected: FAIL

[Check headers has with an invalid name invalidĀ]
expected: FAIL

[Check headers has with an invalid name [object Object\]]
expected: FAIL

[Check headers set with an invalid name invalidĀ]
expected: FAIL

[Check headers set with an invalid name [object Object\]]
expected: FAIL

[Check headers set with an invalid value invalidĀ]
expected: FAIL

[Check headers append with an invalid name invalidĀ]
expected: FAIL

[Check headers append with an invalid name [object Object\]]
expected: FAIL

[Check headers append with an invalid value invalidĀ]
expected: FAIL

[Headers forEach throws if argument is not callable]
expected: FAIL

[Headers forEach loop should stop if callback is throwing exception]
expected: FAIL

@@ -0,0 +1,3 @@
[headers-idl.html]
type: testharness
expected: TIMEOUT
@@ -0,0 +1,11 @@
[headers-normalize.html]
type: testharness
[Create headers with not normalized values]
expected: FAIL

[Check append method whith not normalized values]
expected: FAIL

[Check set method whith not normalized values]
expected: FAIL

@@ -0,0 +1,3 @@
[headers-structure.html]
type: testharness
expected: TIMEOUT
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.