Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I've tested it, with a home-made server and a simple response. Not sure if the response is well-formed because no browser understands it 100% OK. But here are the results:</p> <ul> <li><strong>Firefox 3.5</strong>: Renders only the last part, others are ignored.</li> <li><strong>IE 8</strong>: Shows all the content as if it were text/plain, including the boundaries.</li> <li><strong>Chrome 3</strong>: Saves all the content in a single file, nothing is rendered.</li> <li><strong>Safari 4</strong>: Saves all the content in a single file, nothing is rendered.</li> <li><strong>Opera 10.10</strong>: Something weird. Starts rendering the first part as plain/text, and then clears everything. The loading progress bar hangs on 31%.</li> </ul> <p>Here's the complete response, if anyone finds any error, please tell me and I'll try again:</p> <pre><code>HTTP/1.1 200 OK Date: Tue, 01 Dec 2009 23:27:30 GMT Vary: Accept-Encoding,User-Agent Content-Length: 681 Content-Type: Multipart/mixed; boundary="sample_boundary"; Multipart not supported :( --sample_boundary Content-Type: text/css; charset=utf-8 Content-Location: http://localhost:2080/file.css body { background-color: yellow; } --sample_boundary Content-Type: application/x-javascript; charset=utf-8 Content-Location: http://localhost:2080/file.js alert("Hello from a javascript!!!"); --sample_boundary Content-Type: text/html; charset=utf-8 Content-Base: http://localhost:2080/ &lt;html&gt; &lt;head&gt; &lt;link rel="stylesheet" href="http://localhost:2080/file.css"&gt; &lt;/head&gt; &lt;body&gt; Hello from a html &lt;script type="text/javascript" src="http://localhost:2080/file.js"&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; --sample_boundary-- </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload