Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!doctype html>
2 <html>
3 <head>
4 <title>four stylesheets</title>
5 <link rel="stylesheet" type="text/css" media="scren" href="simple.css"/>
6 <style type="text/css">
7 div {
8 font-size: 2em;
9 }
10 </style>
11 <style type="text/css">
12 span {
13 font-size: 3em;
14 }
15 </style>
16 <style type="text/css">
17 p {
18 font-size: 4em;
19 }
20 </style>
21 </head>
22 <body>
23 <div>four <span>stylesheets</span></div>
24 </body>
25 </html>