Action Items

ACTION 376

Completed or Duplicated Actions

ACTION 350

Done: http://lists.w3.org/Archives/Public/www-style/2011Oct/0532.html

L-Action-7

Feedback: Seamless iframes don’t automatically provide the desired behavior. Seamless iframe is actually transparent for styling, it is intended to be equivalent to literally inserting the content into the master document, while what we want for indirect flow is the flow looking and behaving as if it was the document being shown in paged media – styled exactly as author intended for the content, with no interaction with styling of the template.

(as noted in http://lists.w3.org/Archives/Public/www-style/2011Sep/0098.html)

Issue 19 still need a resolution, but seamless iframe is not the answer.

ACTION 351

L-Action-9

L-Action-10

L-Action-15

L-Action-5

L-Action-17

ACTION 354

L-Action-8

L-Action-11

L-Action-12

L-Action-13

L-Action-14

L-Action-16

L-Action-6

L-Action-1

L-Action-2

L-Action-3

L-Action-4

ACTION 352

ACTION 330

See: Vincent’s action email
See: Alex’s proposal

✔ <html>Vincent</html>: document the from-flow v.s. content issue and create proposal. See Issue 1 below.

Open Issues

Issue 23: should regions be non-breakable

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

Issue 20: List of region style properties

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

Issue 24: Creating a named flow from external resource

URL : http://www.w3.org/Style/CSS/Tracker/actions/376

Description : It should be possible to create a named flow directly from content of a separate document. Previously it was defined that <iframe style="flow-into:flowname"> its content into the flow, rather than itself. That special case was deemed inappropriate and removed from the spec with action (Alex) to propose a different syntax.

Option 1 : two ‘flow-into’ properties:

 
  <iframe style="flow-into:flow1"> --  add iframe to flow as a replaced element
  <iframe style="flow-content-into:flow1"> --  add content of the iframe to flow

ISSUE: that would apply to all elements, sometimes useful, but potentially with more special cases to deal with.

Option 2 : a separate property to specify what to add to flow, with the same effect:

 
  <iframe style="flow-into:flow1; flow-source-type:element"> --  add iframe to flow as a replaced element
  <iframe style="flow-into:flow1; flow-source-type:content"> --  add content of the iframe to flow

Option 3 : use a rule

@flow flow1 “story1.html”; @flow flow2 url(“story1.html”);

ISSUE: what will OM for programmatic flow source control look like?

Option 4 : seamless iframe