multicol-rule-percent-001

column-rule-width and percentage unit (basic)

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Flags
ahem, invalid
Assertion
This test checks that the column-rule-width property does not accept percentage unit in its values.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3  <head>
 4   <title>CSS Multi-column Layout Test: column-rule-width and percentage unit (basic)</title>
 5   <link rel="author" title="Opera Software ASA" href="http://www.opera.com/">
 6   <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2013-08-14 -->
 7   <link rel="help" href="http://www.w3.org/TR/css3-multicol/#crw" title="4.4. 'column-rule-width'">
 8   <link rel="match" href="reference/multicol-containing-002-ref.htm">
 9   <meta name="flags" content="ahem invalid">
10   <meta name="assert" content="This test checks that the column-rule-width property does not accept percentage unit in its values.">
11   <style type="text/css">
12   div
13   {
14   color: green;
15   font: 1.25em/1 Ahem;
16   width: 19em;
17 
18   column-count: 4;
19   column-gap: 1em;
20   column-rule-color: red;
21   column-rule-style: solid;
22   column-rule-width: 0;
23   column-rule-width: 200%;
24   }
25   </style>
26  </head>
27 
28  <body>
29 
30   <div>4444 1&nbsp;&nbsp;1 1&nbsp;&nbsp;1 4444 1&nbsp;&nbsp; 1&nbsp;&nbsp; 1&nbsp;&nbsp; 4444 1&nbsp;&nbsp;1 1&nbsp;&nbsp;1 4444 1&nbsp;&nbsp;1 1&nbsp;&nbsp;1 1&nbsp;&nbsp;1 4444 1&nbsp;&nbsp; 1&nbsp;&nbsp; 4444 &nbsp;&nbsp;&nbsp;1 &nbsp;&nbsp;&nbsp;1 4444 4444 1&nbsp;&nbsp; 1&nbsp;&nbsp; 4444 &nbsp;&nbsp;&nbsp;1 &nbsp;&nbsp;&nbsp;1 4444</div>
31 
32  </body>
33 </html>