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 <html>
2 <head><style>
3 /* Sets of heights that trigger crash:
4 100px/50px/51+px
5 100px/30px/74+px
6 Get only an assert unless you set ".d { position: absolute; }".
8 Trigger hang (separate issue, absolute not needed):
9 10px/10px/9999px
10 10px/10px/999999px --> "bad height" notreached
11 */
12 #colset { width: 200px;
13 -moz-column-count: 3; }
14 #a { height: 10px; }
15 #b { height: 10px; }
16 #c { height: 999999px; }
18 </style>
19 </head>
20 <!-- Removing whitespace in body for simpler frame trees -->
21 <body
22 ><div id="colset"
23 ><div
24 ><div id="a"></div
25 ><div id="b"
26 ><div id="c"></div
27 ><div id="d"></div
28 ></div
29 ></div
30 ></div
31 ></body>
32 </html>