3 <script type=
"text/javascript">
5 if (window
.testRunner
) {
6 testRunner
.dumpAsText();
7 testRunner
.waitUntilDone();
10 var xhr
= new XMLHttpRequest();
12 xhr
.onreadystatechange = function() {
13 if (xhr
.readyState
== 4) {
14 document
.getElementById("page").textContent
= "PASS";
15 if (window
.testRunner
)
16 testRunner
.notifyDone();
20 xhr
.open("POST", "resources/1251.html", true);
25 <p> Test case for
<a href=
"http://bugs.webkit.org/show_bug.cgi?id=16906">bug
16906</a>: [CURL] Crash below ResourceHandleManager::setupPOST when job-
>request().httpBody() is NULL
</p>
26 <p> This page should not crash and you should see PASS
</p>