[multi-col] multicol-reduce-000-ref

Hello,


http://test.csswg.org/suites/css3-multicol/nightly-unstable/html4/multicol-reduce-000-ref.htm


line 7 div {
  margin: 1em auto;
  background: yellow;
  border: thin solid black;
  width: 600px;
  columns: 2px;
  column-gap: 0;
  column-rule: none;
}

should be instead/rather

div {
  background-color: yellow;
  border: black solid thin;
  columns: 300px 2; /* or columns: 2 auto; or column-count: 2; or
columns: 2; */
  column-gap: 0;
  column-rule: none;
  margin: 1em auto;
  width: 600px;
}

Gérard
-- 
Contributions to the CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/

CSS 2.1 Test suite RC6, March 23rd 2011:
http://test.csswg.org/suites/css2.1/20110323/html4/toc.html

CSS 2.1 test suite harness:
http://test.csswg.org/harness/

Contributing to to CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/web-authors-contributions-css21-testsuite.html

Received on Wednesday, 16 May 2012 21:27:57 UTC