Mercurial > urweb
annotate demo/css.ur @ 1726:4df4521fbd3b
Removed excess zero byte from empty pages.
Zero byte sometimes breaks http tunneling in Safari. Empty page is a "Not Modified" response for app.js
author | Vladimir Shabanov <vshabanoff@gmail.com> |
---|---|
date | Wed, 25 Apr 2012 03:07:07 +0400 |
parents | a8bdd5a0d9b0 |
children |
rev | line source |
---|---|
adamc@775 | 1 style quote |
adamc@775 | 2 |
adamc@775 | 3 fun main () = return <xml> |
adamc@775 | 4 <head> |
adamc@775 | 5 <link rel="stylesheet" type="text/css" href="http://adam.chlipala.net/style.css"/> |
adamc@775 | 6 </head> |
adamc@775 | 7 |
adamc@775 | 8 <body> |
adamc@775 | 9 <div class={quote}>Here's a quote.</div> |
adamc@775 | 10 </body> |
adamc@775 | 11 </xml> |