csswg/css3-transforms ChangeLog,1.18,1.19 Overview.html,1.28,1.29 Transforms.src.html,1.31,1.32

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

Modified Files:
	ChangeLog Overview.html Transforms.src.html 
Log Message:
2012-02-22 simon.fraser@apple.com
    Fix more validation issues.


Index: ChangeLog
===================================================================
RCS file: /sources/public/csswg/css3-transforms/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ChangeLog	22 Feb 2012 18:44:07 -0000	1.18
+++ ChangeLog	22 Feb 2012 18:45:34 -0000	1.19
@@ -1,4 +1,7 @@
 2012-02-22 simon.fraser@apple.com
+    Fix more validation issues.
+
+2012-02-22 simon.fraser@apple.com
     Fix some validation issues.
 
 2012-02-21 simon.fraser@apple.com

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-transforms/Overview.html,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- Overview.html	22 Feb 2012 18:44:07 -0000	1.28
+++ Overview.html	22 Feb 2012 18:45:34 -0000	1.29
@@ -1845,9 +1845,9 @@
    <li id=Translate3dDefined>
     <p> A 3D translation with the parameters <em>tx</em>, <em>ty</em> and
      <em>tz</em> is equivalent to the matrix:</p>
-    <img height=106 src=translate3d.png
-    title="\begin{bmatrix} 1 & 0 & 0 & tx \\ 0 & 1 & 0 & ty \\ 0 & 0 & 1 & tz \\ 0 & 0 & 0 & 1 \end{bmatrix}"
-    width=114>
+    <img
+    alt="\begin{bmatrix} 1 & 0 & 0 & tx \\ 0 & 1 & 0 & ty \\ 0 & 0 & 1 & tz \\ 0 & 0 & 0 & 1 \end{bmatrix}"
+    height=106 src=translate3d.png width=114>
 
    <li id=Scale3dDefined>
     <p> A 3D scaling with the parameters <em>sx</em>, <em>sy</em> and
@@ -1863,9 +1863,9 @@
     alt="\begin{bmatrix} 1 - 2 \cdot (y^2 + z^2) \cdot sq & 2 \cdot (x \cdot y \cdot sq - z \cdot sc) & 2 \cdot (x \cdot z \cdot sq + y \cdot sc) & 0 \\ 2 \cdot (x \cdot y \cdot sq + z \cdot sc) & 1 - 2 \cdot (x^2 + z^2) \cdot sq & 2 \cdot (y \cdot z \cdot sq - x \cdot sc) & 0 \\ 2 \cdot (x \cdot z \cdot sq - y \cdot sc) & 2 \cdot (y \cdot z \cdot sq + x \cdot sc) & 1 - 2 \cdot (x^2 + y^2) \cdot sq & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix}"
     height=106 src=rotate3dmatrix.png width=647>
     <p> where:</p>
-    <img height=50 src=rotate3dvariables.png
-    title="\newline sc = \sin (\alpha/2) \cdot \cos (\alpha/2) \newline sq = \sin^2 (\alpha/2)"
-    width=221>
+    <img
+    alt="\newline sc = \sin (\alpha/2) \cdot \cos (\alpha/2) \newline sq = \sin^2 (\alpha/2)"
+    height=50 src=rotate3dvariables.png width=221>
 
    <li id=RotateXDefined>
     <p> A 3D rotation about the X axis with the parameter <em>alpha</em> is

Index: Transforms.src.html
===================================================================
RCS file: /sources/public/csswg/css3-transforms/Transforms.src.html,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- Transforms.src.html	22 Feb 2012 18:44:07 -0000	1.31
+++ Transforms.src.html	22 Feb 2012 18:45:35 -0000	1.32
@@ -1711,7 +1711,7 @@
                   <p>
                     A 3D translation with the parameters <em>tx</em>, <em>ty</em> and <em>tz</em> is equivalent to the matrix:
                   </p>
-                  <img src="translate3d.png" title="\begin{bmatrix} 1 & 0 & 0 & tx \\ 0 & 1 & 0 & ty \\ 0 & 0 & 1 & tz \\ 0 & 0 & 0 & 1 \end{bmatrix}" width="114" height="106">
+                  <img src="translate3d.png" alt="\begin{bmatrix} 1 & 0 & 0 & tx \\ 0 & 1 & 0 & ty \\ 0 & 0 & 1 & tz \\ 0 & 0 & 0 & 1 \end{bmatrix}" width="114" height="106">
                 </li>      
                 <li id="Scale3dDefined">
                   <p>
@@ -1727,7 +1727,7 @@
                   <p>
                     where:
                   </p>
-                  <img src="rotate3dvariables.png" title="\newline sc = \sin (\alpha/2) \cdot \cos (\alpha/2) \newline sq = \sin^2 (\alpha/2)" width="221" height="50">
+                  <img src="rotate3dvariables.png" alt="\newline sc = \sin (\alpha/2) \cdot \cos (\alpha/2) \newline sq = \sin^2 (\alpha/2)" width="221" height="50">
                 </li>
                 <li id="RotateXDefined">
                   <p>

Received on Wednesday, 22 February 2012 18:45:41 UTC