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

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

29 lines
322 B
HTML
Raw Normal View History

2009-10-15 20:26:59 +00:00
<!DOCTYPE html>
<html>
<head>
<style>
#outer {
column-count: 2;
2009-10-15 20:26:59 +00:00
}
#inner {
border: 1px solid green;
}
</style>
<style id="s">
#inner {
float: right;
height: 1em;
}
</style>
</head>
<body onload="document.getElementById('s').disabled = true;">
<div id="outer"><div id="inner"></div></div>
</body>
</html>