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