comand-, javascript,
:
$ firefox 'data:text/html;charset=ISO-8859-1,
<html>
<head>
<title>TEST Demo</title>
</head>
<body>
<h3 id="title">Test demo</h3>
<script language="javascript">
window.open("http://perso.f-hauri.ch/~felix/svg/dustin_w_Clock_autonom.svg","clock","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=600,top=100,left=120");
window.open("http://perso.f-hauri.ch/~felix/svg/fw.svg","netrate","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=420,height=372,top=40,left=620");
var s=10;
function cntdwn()
{
document.getElementById("title").innerHTML="Test demo: "+s;s=s-1;
if (0 > s)
{
window.location="http://perso.f-hauri.ch/~felix/meteo/picture/meteo.html";
}
else window.setTimeout(cntdwn,1000);
};
window.onload=cntdwn;
</script>
</body>'