[Bug 16819] New: No display when combining flow-from and flow-into is bad

https://www.w3.org/Bugs/Public/show_bug.cgi?id=16819

           Summary: No display when combining flow-from and flow-into is
                    bad
           Product: CSS
           Version: unspecified
          Platform: All
               URL: http://wiki.csswg.org/spec/css3-regions/regions-use-ca
                    ses#converting-hard-breaks-to-named-flows
        OS/Version: All
            Status: ASSIGNED
          Severity: normal
          Priority: P2
         Component: Regions
        AssignedTo: stearns@adobe.com
        ReportedBy: stearns@adobe.com
         QAContact: public-css-bugzilla@w3.org
                CC: eoconnor@apple.com


Currently, the spec states that if you have a block container with both
flow-from and flow-into properties set, nothing is visually formatted:

#my-block-container {
  flow-into: some-flow;
  flow-from: some-flow;
}

It would be better if we could define the properties such that this put the
contents of #my-block-container into the named flow, and put the box in the
region chain for that flow. The best we can do now is:

#my-block-container > * { flow-into: some-flow; }
#my-block-container { flow-from: some-flow; }

But this loses any and all direct content of #my-block-container

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Sunday, 22 April 2012 22:57:12 UTC