Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/fetch/api/request/request-idl-expected.txt

Issue 2292763002: [Fetch API] Implement Request.formData and Response.formData. (Closed)
Patch Set: More global-interface-listing*-expected.txt, urlencoded-parser-expected.txt Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 This is a testharness.js-based test. 1 This is a testharness.js-based test.
2 PASS Request interface: existence and properties of interface object 2 PASS Request interface: existence and properties of interface object
3 PASS Request interface object length 3 PASS Request interface object length
4 PASS Request interface object name 4 PASS Request interface object name
5 PASS Request interface: existence and properties of interface prototype object 5 PASS Request interface: existence and properties of interface prototype object
6 PASS Request interface: existence and properties of interface prototype object's "constructor" property 6 PASS Request interface: existence and properties of interface prototype object's "constructor" property
7 PASS Request interface: attribute method 7 PASS Request interface: attribute method
8 PASS Request interface: attribute url 8 PASS Request interface: attribute url
9 PASS Request interface: attribute headers 9 PASS Request interface: attribute headers
10 FAIL Request interface: attribute type assert_true: The prototype object must ha ve a property "type" expected true got false 10 FAIL Request interface: attribute type assert_true: The prototype object must ha ve a property "type" expected true got false
11 FAIL Request interface: attribute destination assert_true: The prototype object must have a property "destination" expected true got false 11 FAIL Request interface: attribute destination assert_true: The prototype object must have a property "destination" expected true got false
12 PASS Request interface: attribute referrer 12 PASS Request interface: attribute referrer
13 PASS Request interface: attribute referrerPolicy 13 PASS Request interface: attribute referrerPolicy
14 PASS Request interface: attribute mode 14 PASS Request interface: attribute mode
15 PASS Request interface: attribute credentials 15 PASS Request interface: attribute credentials
16 PASS Request interface: attribute cache 16 PASS Request interface: attribute cache
17 PASS Request interface: attribute redirect 17 PASS Request interface: attribute redirect
18 PASS Request interface: attribute integrity 18 PASS Request interface: attribute integrity
19 PASS Request interface: operation clone() 19 PASS Request interface: operation clone()
20 FAIL Request interface: attribute body assert_true: The prototype object must ha ve a property "body" expected true got false 20 FAIL Request interface: attribute body assert_true: The prototype object must ha ve a property "body" expected true got false
21 PASS Request interface: attribute bodyUsed 21 PASS Request interface: attribute bodyUsed
22 PASS Request interface: operation arrayBuffer() 22 PASS Request interface: operation arrayBuffer()
23 PASS Request interface: operation blob() 23 PASS Request interface: operation blob()
24 FAIL Request interface: operation formData() assert_own_property: interface prot otype object missing non-static operation expected property "formData" missing 24 PASS Request interface: operation formData()
25 PASS Request interface: operation json() 25 PASS Request interface: operation json()
26 PASS Request interface: operation text() 26 PASS Request interface: operation text()
27 PASS Request interface: new Request("") must inherit property "method" with the proper type (0) 27 PASS Request interface: new Request("") must inherit property "method" with the proper type (0)
28 PASS Request interface: new Request("") must inherit property "url" with the pro per type (1) 28 PASS Request interface: new Request("") must inherit property "url" with the pro per type (1)
29 PASS Request interface: new Request("") must inherit property "headers" with the proper type (2) 29 PASS Request interface: new Request("") must inherit property "headers" with the proper type (2)
30 FAIL Request interface: new Request("") must inherit property "type" with the pr oper type (3) assert_inherits: property "type" not found in prototype chain 30 FAIL Request interface: new Request("") must inherit property "type" with the pr oper type (3) assert_inherits: property "type" not found in prototype chain
31 FAIL Request interface: new Request("") must inherit property "destination" with the proper type (4) assert_inherits: property "destination" not found in protot ype chain 31 FAIL Request interface: new Request("") must inherit property "destination" with the proper type (4) assert_inherits: property "destination" not found in protot ype chain
32 PASS Request interface: new Request("") must inherit property "referrer" with th e proper type (5) 32 PASS Request interface: new Request("") must inherit property "referrer" with th e proper type (5)
33 PASS Request interface: new Request("") must inherit property "referrerPolicy" w ith the proper type (6) 33 PASS Request interface: new Request("") must inherit property "referrerPolicy" w ith the proper type (6)
34 PASS Request interface: new Request("") must inherit property "mode" with the pr oper type (7) 34 PASS Request interface: new Request("") must inherit property "mode" with the pr oper type (7)
35 PASS Request interface: new Request("") must inherit property "credentials" with the proper type (8) 35 PASS Request interface: new Request("") must inherit property "credentials" with the proper type (8)
36 PASS Request interface: new Request("") must inherit property "cache" with the p roper type (9) 36 PASS Request interface: new Request("") must inherit property "cache" with the p roper type (9)
37 PASS Request interface: new Request("") must inherit property "redirect" with th e proper type (10) 37 PASS Request interface: new Request("") must inherit property "redirect" with th e proper type (10)
38 PASS Request interface: new Request("") must inherit property "integrity" with t he proper type (11) 38 PASS Request interface: new Request("") must inherit property "integrity" with t he proper type (11)
39 PASS Request interface: new Request("") must inherit property "clone" with the p roper type (12) 39 PASS Request interface: new Request("") must inherit property "clone" with the p roper type (12)
40 FAIL Request interface: new Request("") must inherit property "body" with the pr oper type (13) assert_inherits: property "body" not found in prototype chain 40 FAIL Request interface: new Request("") must inherit property "body" with the pr oper type (13) assert_inherits: property "body" not found in prototype chain
41 PASS Request interface: new Request("") must inherit property "bodyUsed" with th e proper type (14) 41 PASS Request interface: new Request("") must inherit property "bodyUsed" with th e proper type (14)
42 PASS Request interface: new Request("") must inherit property "arrayBuffer" with the proper type (15) 42 PASS Request interface: new Request("") must inherit property "arrayBuffer" with the proper type (15)
43 PASS Request interface: new Request("") must inherit property "blob" with the pr oper type (16) 43 PASS Request interface: new Request("") must inherit property "blob" with the pr oper type (16)
44 FAIL Request interface: new Request("") must inherit property "formData" with th e proper type (17) assert_inherits: property "formData" not found in prototype c hain 44 PASS Request interface: new Request("") must inherit property "formData" with th e proper type (17)
45 PASS Request interface: new Request("") must inherit property "json" with the pr oper type (18) 45 PASS Request interface: new Request("") must inherit property "json" with the pr oper type (18)
46 PASS Request interface: new Request("") must inherit property "text" with the pr oper type (19) 46 PASS Request interface: new Request("") must inherit property "text" with the pr oper type (19)
47 Harness: the test ran to completion. 47 Harness: the test ran to completion.
48 48
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698