gecko-dev/layout/base/crashtests/538267-1.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 строки
289 B
HTML
Исходник Обычный вид История

2011-01-18 22:43:46 +03:00
<html>
<head>
<style>
div:first-letter { float: left; }
div { column-count: 2; width: 0; }
2011-01-18 22:43:46 +03:00
</style>
<script>
function boom()
{
var v = document.getElementById("v");
v.firstChild.remove();
}
</script>
</head>
<body onload="boom();">
<div id="v">a b<span>c</span></div>
</body>
</html>