mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
441 B
HTML
18 lines
441 B
HTML
<html><head>
|
|
<script>
|
|
function doe(){
|
|
document.getElementById('a').style.display = 'none';
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="document.body.offsetHeight; setTimeout(doe,0)">
|
|
<div style="-moz-column-count: 2;width: 400px;">
|
|
<span id="a">
|
|
<span style="float: left; -moz-column-width: 100px;">
|
|
ع-ع-ع-ع-ع-ع-ع-ع-ع-ع-ع-ع-ع-ع
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</body>
|
|
</html>
|