hixie: Integration with CSS Images. (whatwg r6520)

hixie: Integration with CSS Images. (whatwg r6520)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5219&r2=1.5220&f=h
http://html5.org/tools/web-apps-tracker?from=6519&to=6520

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5219
retrieving revision 1.5220
diff -u -d -r1.5219 -r1.5220
--- Overview.html 22 Aug 2011 22:37:23 -0000 1.5219
+++ Overview.html 22 Aug 2011 23:42:22 -0000 1.5220
@@ -3314,6 +3314,16 @@
     cannot be parsed, as closing the open construct does not result
     in a viable value.</p>
 
+    <p>The term <dfn id="css-element-reference-identifier">CSS element reference identifier</dfn> is used as
+    defined in the <cite>CSS Image Values and Replaced Content</cite>
+    specification to define the API that declares identifiers for use
+    with the CSS 'element()' function. <a href="#refsCSSIMAGES">[CSSIMAGES]</a></p>
+
+    <p>Similarly, the term <dfn id="provides-a-paint-source">provides a paint source</dfn> is used
+    as defined in the <cite>CSS Image Values and Replaced
+    Content</cite> specification to define the interaction of certain
+    HTML elements with the CSS 'element()' function. <a href="#refsCSSIMAGES">[CSSIMAGES]</a></p>
+
    </dd>
 
 
@@ -18607,6 +18617,11 @@
 
   <p>An <code><a href="#the-img-element">img</a></code> element is initially <a href="#img-none" title="img-none">unavailable</a>.</p>
 
+  <p>When an <code><a href="#the-img-element">img</a></code> element is <a href="#img-yes" title="img-yes">available</a>, it <a href="#provides-a-paint-source">provides a paint
+  source</a> whose width is the image's intrinsic width, whose
+  height is the image's intrinsic height, and whose appearance is the
+  intrinsic appearance of the image.</p>
+
   <p>User agents may obtain images immediately or on demand.</p>
 
   <p>A user agent that obtains images immediately must synchronously
@@ -21661,6 +21676,15 @@
   element <a href="#represents" title="represents">represent</a> a link to an
   external video playback utility or to the video data itself.</p>
 
+  <p>When a <code><a href="#the-video-element">video</a></code> element's <a href="#media-resource">media resource</a>
+  has a video channel, the element <a href="#provides-a-paint-source">provides a paint
+  source</a> whose width is the <a href="#media-resource">media resource</a>'s <a href="#concept-video-intrinsic-width" title="concept-video-intrinsic-width">intrinsic width</a>, whose
+  height is the <a href="#media-resource">media resource</a>'s <a href="#concept-video-intrinsic-height" title="concept-video-intrinsic-height">intrinsic height</a>, and
+  whose appearance is the frame of video corresponding to the <a href="#current-playback-position" title="current playback position">current playback position</a>,
+  if that is available, or else (e.g. when the video is seeking or
+  buffering) its previous appearance, if any, or else (e.g. because
+  the video is still loading the first frame) blackness.</p>
+
   <hr></div><dl class="domintro"><dt><var title="">video</var> . <code title="dom-video-videoWidth"><a href="#dom-video-videowidth">videoWidth</a></code></dt>
    <dt><var title="">video</var> . <code title="dom-video-videoHeight"><a href="#dom-video-videoheight">videoHeight</a></code></dt>
 
@@ -27694,6 +27718,12 @@
   <p>When the canvas is initialized, its bitmap must be cleared to
   transparent black.</p>
 
+  <p>When a <code><a href="#the-canvas-element">canvas</a></code> element does not represent its
+  <a href="#fallback-content">fallback content</a>, it <a href="#provides-a-paint-source">provides a paint
+  source</a> whose width is the element's intrinsic width, whose
+  height is the element's intrinsic height, and whose appearance is
+  the element's bitmap.</p>
+
   <p>The <dfn id="dom-canvas-width" title="dom-canvas-width"><code>width</code></dfn> and
   <dfn id="dom-canvas-height" title="dom-canvas-height"><code>height</code></dfn> IDL
   attributes must <a href="#reflect">reflect</a> the respective content
@@ -72521,6 +72551,11 @@
    <dd><cite><a href="http://www.w3.org/TR/css3-fonts/">CSS Fonts
    Module Level 3</a></cite>, J. Daggett. W3C.</dd>
 
+   <dt id="refsCSSIMAGES">[CSSIMAGES]</dt>
+   <dd><cite><a href="http://dev.w3.org/csswg/css3-images/">CSS Image
+   Values and Replaced Content Module Level 3</a></cite>, E. Etemad,
+   T. Atkins. W3C.</dd>
+
    <dt id="refsCSSOM">[CSSOM]</dt>
    <dd><cite><a href="http://dev.w3.org/csswg/cssom/">Cascading Style Sheets
    Object Model (CSSOM)</a></cite>, A. van Kesteren. W3C.</dd>

Received on Monday, 22 August 2011 23:43:19 UTC