Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
2010-07-20 Tony Chang <tony@chromium.org>
Not reviewed, chromium test expectation. [chromium] put back baseline for http/tests/inspector/resource-parameters.html https://bugs.webkit.org/show_bug.cgi?id=42720 r63791 put in a failing baseline for webkit win, but chromium-win falls back to webkit win before the result next to the test file. Just put another copy in chromium-win of the original expected results. * platform/chromium/http/tests/inspector/resource-parameters-expected.txt: Copied from LayoutTests/http/tests/inspector/resource-parameters-expected.txt. Canonical link: https://commits.webkit.org/54632@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@63795 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
76 additions
and 0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,62 @@ | ||
Tests that resources panel shows form data parameters. | ||
|
||
|
||
|
||
{ | ||
pageref : "about:blank" | ||
startedDateTime : <string> | ||
time : <number> | ||
request : { | ||
method : "POST" | ||
url : "http://localhost:8000/inspector/resources/resource-form-data-receiver-iframe.html?queryParam1=queryValue1&queryParam2=" | ||
headers : <object> | ||
headersSize : -1 | ||
bodySize : -1 | ||
queryString : { | ||
0 : { | ||
name : "queryParam1" | ||
value : "queryValue1" | ||
} | ||
1 : { | ||
name : "queryParam2" | ||
value : "" | ||
} | ||
} | ||
postData : { | ||
mimeType : "application/x-www-form-urlencoded" | ||
params : { | ||
0 : { | ||
name : "formParam1" | ||
value : "formValue1" | ||
} | ||
1 : { | ||
name : "formParam2" | ||
value : "" | ||
} | ||
} | ||
text : "formParam1=formValue1&formParam2=" | ||
} | ||
} | ||
response : { | ||
status : 200 | ||
statusText : "OK" | ||
headers : <object> | ||
content : { | ||
size : 30 | ||
mimeType : "text/html" | ||
} | ||
redirectURL : "" | ||
headersSize : -1 | ||
bodySize : 30 | ||
} | ||
timings : { | ||
blocked : -1 | ||
dns : -1 | ||
connect : -1 | ||
send : -1 | ||
wait : <number> | ||
receive : <number> | ||
ssl : -1 | ||
} | ||
} | ||
|