Re: 1.2 feedback: Streaming

"Vincent Hardy" <vincent.hardy@sun.com> wrote in message
news:3DDA62D4.90109@sun.com...
> With the current spec., animations cannot start before the document is
> fully loaded because the time line starts on root element's onload (see
> 19.2.2: "the document begin for a given SVG document fragment is
defined
> to be the exact time at which the 'svg' element's SVGLoad event is
> triggered.") and the root element's onload is triggered when "the user
> agent has fully parsed the element and its descendants" (see 16.2,
> SVGLoad in the interactivity chapter).

Yes, but

<svg>

  <svg>
  <animate>
  </svg>

sleep()

</svg>

The animate on the inner SVG should start as soon as that svg is loaded,
since that is when the onload fires, ASV does not fire the inner SVG's
onload until after the full document is loaded though.

Jim.

Received on Tuesday, 19 November 2002 11:20:54 UTC