layout/generic/crashtests/385681.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <html><head>
     2 <title></title>
     3 <style>
     4 a  {
     5  font-variant: small-caps; 
     6 }
     7 a:hover { 
     8   color: red;
     9 }
    10 </style>
    11 </head>
    12 <body>
    13 <a href="#">home</a><br>
    14 <a href="#">login</a><br>
    15 <a href="#">signup</a><br>
    17 <script>
    18 function doe(i) {
    19 if (!i) {
    20   document.links[1].style.color='red';
    21 	document.links[0].offsetHeight;
    22 	document.links[0].style.color = 'red';
    23 	}
    24 else {
    25   document.links[1].style.color='blue';
    26 	document.links[0].style.color = 'blue';
    27 	}
    28 setTimeout(doe, 100, !i);
    29 }
    30 setTimeout(doe, 500, true);
    31 </script>
    32 </body>
    34 </html>

mercurial