Skip to content

Commit fbc49fd

Browse files
committed
spec/css3-regions: [Issue 20: List of region style properties]
1 parent b285d29 commit fbc49fd

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

spec/css3-regions.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,36 @@ See Issue 1 below.
200200
;URL : https://www.w3.org/Bugs/Public/show_bug.cgi?id=15190
201201

202202

203+
==== Issue 24: List of region style properties ====
203204

205+
;URL : http://www.w3.org/Style/CSS/Tracker/actions/376
206+
;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.
207+
;Option 1 : two ‘flow-into’ properties:
208+
<code>
209+
<iframe style="flow-into:flow1"> -- add iframe to flow as a replaced element
210+
<iframe style="flow-content-into:flow1"> -- add content of the iframe to flow
211+
</code>
212+
;Option 2 : a separate property to specify what to add to flow, with the same effect:
213+
<code>
214+
<iframe style="flow-into:flow1; flow-source-type:element"> -- add iframe to flow as a replaced element
215+
<iframe style="flow-into:flow1; flow-source-type:content"> -- add content of the iframe to flow
216+
</code>
217+
;Option 3 : use a rule
218+
@flow flow1 "story1.html";
219+
@flow flow2 url("story1.html");
220+
Note that with this approach, it is not possible to concatenate content from multiple urls in one flow (which may be a good thing, concatenation is not an expected use pattern for flow indirection feature.
221+
222+
ISSUE: what will OM for programmatic flow source control look like?
223+
;Option 4 : <link> element
224+
<link rel="namedflow" type="text/html-sandboxed" title="flow1" href="article1.html" />
225+
226+
The effect of loading the document via link and then sending content into a named flow should be identical to loading in an iframe and sending iframe content into a named flow with name specified in 'title', including all security restrictions and sandboxing (if "type=text/html-sandboxed").
227+
228+
Concatenating multiple external documents in one named flow is difficult or impossible, so external flow should allow only one document per named flow. If multiple flow links have same title, the first one should be used.
229+
230+
ISSUE: requires a change in HTML5
231+
;Proposal : //TODO//
232+
;Status : Open
204233
===== Issues Resolved by Editors =====
205234

206235
==== Issue 21: When does a flow get created? ====

0 commit comments

Comments
 (0)