blob: 9029618ae1d17ed981c1b9137faea62e4f45cd03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
document.documentElement.style.columnCount = '3';
document.documentElement.offsetHeight;
document.documentElement.style.columnCount = '';
}
</script>
<style type="text/css">
html:before { content: '0'; }
</style>
</head>
<frameset onload="boom();"></frameset>
</html>
|