https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2dd3b4c1c4d29ffc96013d07f10f58851418fcd3 authored by Chris Jones on 25 January 2013, 19:51:16 UTC
Bug 834760: Null-check mAttachedWidgetListener. r=mwu a=blocking-b2g
Tip revision: 2dd3b4c
min-width-1b.html
<!DOCTYPE html>
<html>
<head>
  <style>
  div { -moz-column-width:200px; -moz-column-count:2; -moz-column-gap:0; border:2px solid black; height:200px; }
  div.gap { -moz-column-gap:80px; }
  span { display:inline-block; width:100px; }
  </style>
</head>
<body>
  <table width="1"><tr><td><div>
    <span></span>
  </div></tr></td></table>
  <table width="1"><tr><td><div class="gap">
    <span></span>
  </div></tr></td></table>
</body>
</html>
back to top