mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f708c8026e
--HG-- extra : rebase_source : 7dd5de3f6b2a9e83994d7023d4cfafce205e9376
19 lines
377 B
HTML
19 lines
377 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
div:first-letter { float: left; }
|
|
</style>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var v = document.getElementById("v");
|
|
var t = v.firstChild;
|
|
v.appendChild(document.createTextNode(" "));
|
|
v.removeChild(t);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"><div id="v" style="-moz-column-count: 2; width: 1px;">a b</div></body>
|
|
</html>
|