mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
13ddb2b9d8
--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>
|