Upstream version 9.37.197.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / platform / linux / http / tests / xmlhttprequest / workers / shared-worker-methods-async-expected.txt
1 GET and POST should not be the only HTTP methods implemented in XMLHttpRequest for SharedWorkers.
2
3 GET(""): GET(null bytes), Content-Type: null
4 GET(null): GET(null bytes), Content-Type: null
5 GET("123"): GET(null bytes), Content-Type: null
6 POST(""): POST(0 bytes), Content-Type: text/plain;charset=UTF-8
7 POST(null): POST(0 bytes), Content-Type: null
8 POST("123"): POST(3 bytes), Content-Type: text/plain;charset=UTF-8
9 PUT(""): PUT(0 bytes), Content-Type: text/plain;charset=UTF-8
10 PUT(null): PUT(0 bytes), Content-Type: null
11 PUT("123"): PUT(3 bytes), Content-Type: text/plain;charset=UTF-8
12 DELETE(""): DELETE(0 bytes), Content-Type: text/plain;charset=UTF-8
13 DELETE(null): DELETE(null bytes), Content-Type: null
14 DELETE("123"): DELETE(3 bytes), Content-Type: text/plain;charset=UTF-8
15 HEAD(""): HEAD(0 bytes), Content-Type: null
16 HEAD(null): HEAD(0 bytes), Content-Type: null
17 HEAD("123"): HEAD(0 bytes), Content-Type: null
18 WKFOOBAR(""): WKFOOBAR(0 bytes), Content-Type: text/plain;charset=UTF-8
19 WKFOOBAR(null): WKFOOBAR(null bytes), Content-Type: null
20 WKFOOBAR("123"): WKFOOBAR(3 bytes), Content-Type: text/plain;charset=UTF-8
21 SEARCH(""): SEARCH(0 bytes), Content-Type: text/plain;charset=UTF-8
22 SEARCH(null): SEARCH(null bytes), Content-Type: null
23 SEARCH("123"): SEARCH(3 bytes), Content-Type: text/plain;charset=UTF-8
24 DONE