csswg/css3-transforms Transforms.src.html,1.2,1.3

Update of /sources/public/csswg/css3-transforms
In directory hutz:/tmp/cvs-serv30341

Modified Files:
	Transforms.src.html 
Log Message:
Fixed title. Added issue about SVGMatrix v.s., CSSMatrix.

Index: Transforms.src.html
===================================================================
RCS file: /sources/public/csswg/css3-transforms/Transforms.src.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Transforms.src.html	27 Oct 2011 01:38:57 -0000	1.2
+++ Transforms.src.html	28 Oct 2011 16:30:40 -0000	1.3
@@ -2,13 +2,13 @@
 <html lang="en">
 <head profile="http://www.w3.org/2006/03/hcard">
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-  <title>CSS Exclusions and Shapes Module Level 1</title>
+  <title>CSS Transforms</title>
   <link rel="stylesheet" type="text/css" href="default.css" />
   <link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css" />
 
 
   <link id="st" href="alternate-spec-style.css" rel="stylesheet" 
-      type="text/css" disabled title="additional spec styles">             
+      type="text/css"  disabled title="additional spec styles">             
         
         <script type="text/javascript" src="style-toggle.js"></script>
 
@@ -40,6 +40,37 @@
         opacity: 1;
         color: #46A4E9;
     }
+    
+    
+
+     div.issue-marker {
+         position: absolute;
+         width: 20ex;
+         margin-left: -26ex;
+         padding-right: 0.5em;
+         font-weight: normal;
+         font-size: 11px;
+         text-align: right;
+         background-color: white;
+         font-size: 90%;
+         padding-top: 0px;
+         padding-bottom: 0px;
+     }
+
+     div.issue-marker a {
+         color: red;
+     }
+     
+     div.issue-marker .desc {
+         font-size: 80%;
+         line-height: 1.4em;
+     }
+     
+     div.issue-marker .desc strong {
+         font-weight: bold;
+         font-size: 120%;
+         color: red;
+     }
   </style>
 
 </head>
@@ -176,16 +207,6 @@
                 the transform completely, since - even transformed - the object should
                 be acting as "porthole" through which the fixed background can be viewed
                 in its original form.
-              </div>
-              <div class="issue">
-                This property should also be applicable to SVG elements.
-              </div>
-              <div class="issue">
-                We also need to specify that SVG transforms *do* combine with this
-                transform, e.g., if a &lt;foreignObject&gt; is inside transformed SVG
-                and then defines a transform of its own. This means we may potentially
-                have to examine the current SVG transform and combine with it to set the
-                correct transform.
               </div><!-- ======================================================================================================= -->
               <h2 id="transform-property">
                 The <span class="prop-name">'transform'</span> Property
@@ -294,7 +315,12 @@
                   
               <div class="issue">
                   <ul>
-                      <li>Should we also make gradientTransform and patternTransform properties?</li>
+                      <li>Should we also make gradientTransform and patternTransform presentation attributes? 
+                          Proposal: they 
+                          are the 'presentation attributes' for &lt;gradient&gt; and &gt;pattern&lt; respectively,
+                          for the 'transform' property (i.e., there is no 'gradientTransform' property. Instead, the
+                          'gradientTransform' is a presentation attribute that provides a value for the 
+                          'transform' property that applies to the &lt;gradient&gt; element.)</li>
                       <li>Is this proposal working for SMIL animation of the transform property?</li>
                   </ul>
               </div>
@@ -758,17 +784,20 @@
                 CSSMatrix
               </h3>
 
+
+              <div class="issue issue-marker">
+                <p class="desc">We actually describe a 3x2 matrix here, similar to <a href="http://www.w3.org/TR/SVG/coords.html#InterfaceSVGMatrix">SVGMatrix</a>.
+              </p></div>
+
               <dl>
                 <dt>
                   <b>Interface <i><a id="DOM-CSSMatrix" name='DOM-CSSMatrix'>CSSMatrix</a></i></b>
                 </dt>
                 <dd>
+
                   <p>
                     The <code>CSSMatrix</code> interface represents a 3x2 homogeneous matrix.
                   </p>
-                  <div class="issue">
-                    We actually describe a 3x2 matrix here, similar to <a href="http://www.w3.org/TR/SVG/coords.html#InterfaceSVGMatrix">SVGMatrix</a>.
-                  </div>
                   <dl>
 
                     <dt>
@@ -1154,6 +1183,7 @@
                 </dd> <!-- Interface CSSMatrix -->
               </dl>
 
+              <div class="issue issue-marker"><p class="desc">We need to resolve how SVGMatrix and CSSMatrix work together.</p></div>
               <p>
                 In addition to the interface listed above, the <code>getComputedStyle</code> method of the <code>Window</code>
                 object has been updated. The <code>transform</code> property of the style object returned by
@@ -1161,6 +1191,7 @@
                 representing the 3x2 matrix that is the result of applying the individual functions listed in the
                 <code>transform</code> property.
               </p>
+              
 
         <h2>References</h2>
 

Received on Friday, 28 October 2011 16:30:44 UTC