- From: poot <cvsmail@w3.org>
- Date: Thu, 24 Jul 2008 15:56:36 +0900 (JST)
- To: public-html-diffs@w3.org
fix the definition of img.width/height for the case where the image isn't being rendered but is available (bug 5856) (credit: avk) (whatwg r1917) http://www.w3.org/Bugs/Public/show_bug.cgi?id=5856 isMap http://people.w3.org/mike/diffs/html5/spec/Overview.1.1107.html#ismap0 width http://people.w3.org/mike/diffs/html5/spec/Overview.1.1107.html#width complete http://people.w3.org/mike/diffs/html5/spec/Overview.1.1107.html#complete height http://people.w3.org/mike/diffs/html5/spec/Overview.1.1107.html#height http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1106&r2=1.1107&f=h http://html5.org/tools/web-apps-tracker?from=1916&to=1917 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1106 retrieving revision 1.1107 diff -u -d -r1.1106 -r1.1107 --- Overview.html 23 Jul 2008 22:24:52 -0000 1.1106 +++ Overview.html 23 Jul 2008 22:31:10 -0000 1.1107 @@ -15809,11 +15809,14 @@ href="#reflect">reflect</a> the respective content attributes of the same name. - <p>The DOM attributes <dfn id=height - title=dom-img-height><code>height</code></dfn> and <dfn id=width - title=dom-img-width><code>width</code></dfn> must return the rendered - height and width of the image, in CSS pixels, if the image is being - rendered, and is being rendered to a visual medium, or 0 otherwise. <a + <p>The DOM attributes <dfn id=width + title=dom-img-width><code>width</code></dfn> and <dfn id=height + title=dom-img-height><code>height</code></dfn> must return the rendered + width and height of the image, in CSS pixels, if the image is being + rendered, and is being rendered to a visual medium; or else the intrinsic + with and height of the image, in CSS pixels, if the image is available but + not being rendered to a visual medium; or else 0, if the image is not + available or its dimensions are not known. <a href="#references">[CSS21]</a> <p>The DOM attribute <dfn id=complete
Received on Thursday, 24 July 2008 06:57:14 UTC