Skip to content

Commit 8eb18b9

Browse files
committed
Ensure table-related elements are transformable
Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=16326.
1 parent 7a1e49a commit 8eb18b9

3 files changed

Lines changed: 34 additions & 10 deletions

File tree

css3-transforms/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2012-03-15 ayg@aryeh.name
2+
Ensure table-related elements are transformable
3+
Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=16326.
4+
15
2012-03-15 dschulze@adobe.com
26
Correction: SVG attributes are not in the SVG namespace.
37

css3-transforms/Overview.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,12 +429,24 @@ <h2 id=definitions><span class=secno>4. </span>Definitions</h2>
429429
id=transformable-element>transformable element</dfn>
430430

431431
<dd>
432-
<p> A transformable element in the HTML namespace which is either a <a
432+
<p> A transformable element is an element in the HTML namespace which is
433+
either a <a
433434
href="http://www.w3.org/TR/CSS2/visuren.html#block-level">block-level</a>
434435
or <a href="http://www.w3.org/TR/CSS2/visuren.html#x13">atomic
435-
inline-level element</a>, or an element in the SVG namespace (see <a
436-
href="#SVG11" rel=biblioentry>[SVG11]<!--{{SVG11}}--></a>) which has the
437-
attributes &lsquo;<a href="#effects"><code class=css><code
436+
inline-level element</a>, or whose &lsquo;<code class=css><code
437+
class=property>display</code></code>&rsquo; property computes to
438+
&lsquo;<code class=css><code class=css>table-row</code></code>&rsquo;,
439+
&lsquo;<code class=css><code
440+
class=css>table-row-group</code></code>&rsquo;, &lsquo;<code
441+
class=css><code class=css>table-header-group</code></code>&rsquo;,
442+
&lsquo;<code class=css><code
443+
class=css>table-footer-group</code></code>&rsquo;, &lsquo;<code
444+
class=css><code class=css>table-cell</code></code>&rsquo;, or
445+
&lsquo;<code class=css><code
446+
class=css>table-caption</code></code>&rsquo;; or an element in the SVG
447+
namespace (see <a href="#SVG11"
448+
rel=biblioentry>[SVG11]<!--{{SVG11}}--></a>) which has the attributes
449+
&lsquo;<a href="#effects"><code class=css><code
438450
class=property>transform</code></code></a>&rsquo;, &lsquo;<code
439451
class=property>patternTransform</code>&rsquo; or &lsquo;<code
440452
class=property>gradientTransform</code>&rsquo;.</p>

css3-transforms/Transforms.src.html

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,21 @@ <h2 id="definitions">Definitions</h2>
193193
<dt id="TermTransformableElement"><dfn>transformable element</dfn></dt>
194194
<dd>
195195
<p>
196-
A transformable element in the HTML namespace which is either a
196+
A transformable element is an element in the HTML namespace
197+
which is either a
197198
<a href="http://www.w3.org/TR/CSS2/visuren.html#block-level">block-level</a>
198-
or <a href="http://www.w3.org/TR/CSS2/visuren.html#x13">atomic
199-
inline-level element</a>, or an element in the SVG namespace
200-
(see [[SVG11]]) which has the attributes '<code
201-
class="property">transform</code>',
202-
'patternTransform' or 'gradientTransform'.
199+
or
200+
<a href="http://www.w3.org/TR/CSS2/visuren.html#x13">atomic inline-level element</a>,
201+
or whose '<code class="property">display</code>' property
202+
computes to '<code class="css">table-row</code>',
203+
'<code class="css">table-row-group</code>',
204+
'<code class="css">table-header-group</code>',
205+
'<code class="css">table-footer-group</code>',
206+
'<code class="css">table-cell</code>', or
207+
'<code class="css">table-caption</code>'; or an element in the
208+
SVG namespace (see [[SVG11]]) which has the attributes
209+
'<code class="property">transform</code>', 'patternTransform'
210+
or 'gradientTransform'.
203211
</p>
204212
</dd>
205213

0 commit comments

Comments
 (0)