Bug 22705 - Don't respect number of columns
Summary: Don't respect number of columns
Status: RESOLVED INVALID
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKitGTK (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC OS X 10.5
: P2 Normal
Assignee: Nobody
URL: http://www.alistapart.com/d/cssatten/...
Keywords:
: 22706 22707 22708 (view as bug list)
Depends on:
Blocks:
 
Reported: 2008-12-06 03:38 PST by Luca Ferretti
Modified: 2008-12-08 12:49 PST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Luca Ferretti 2008-12-06 03:38:35 PST
The page in URL defines
  #preamble { columns: 2 }

But WebKitGtk seems to ignnore it, see attached screenshot
Comment 1 Mark Rowe (bdash) 2008-12-06 14:52:45 PST
*** Bug 22708 has been marked as a duplicate of this bug. ***
Comment 2 Mark Rowe (bdash) 2008-12-06 14:52:50 PST
*** Bug 22707 has been marked as a duplicate of this bug. ***
Comment 3 Mark Rowe (bdash) 2008-12-06 14:52:57 PST
*** Bug 22706 has been marked as a duplicate of this bug. ***
Comment 4 Anthony Ricaud 2008-12-08 12:49:02 PST
As of today, this syntax is invalid in WebKit. The spec is not yet fully implemented so every property is prefixed with -webkit.

Therefore, the page should define :
#preamble { -webkit-columns: 2; columns: 2; }
(I've left columns: 2; for compatibility)

With this syntax, this page renders as expected for me.