1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>The transform-origin Property - CSS Transforms Module Level 1 CR Test Suite</title>
<style type="text/css">
@import "http://www.w3.org/StyleSheets/TR/base.css";
@import "../indices.css";
</style>
</head>
<body>
<h1>CSS Transforms Module Level 1 CR Test Suite</h1>
<h2>The transform-origin Property (117 tests)</h2>
<table width="100%">
<col id="test-column">
<col id="refs-column">
<col id="flags-column">
<col id="info-column">
<thead>
<tr>
<th>Test</th>
<th><abbr title="Rendering References">Refs</abbr></th>
<th>Flags</th>
<th>Info</th>
</tr>
</thead>
<tbody id="s8">
<tr><th colspan="4" scope="rowgroup">
<a href="#s8">+</a>
<a href="http://www.w3.org/TR/css-transforms-1/#transform-origin-property">8 The transform-origin Property</a></th></tr>
<!-- 116 tests -->
<tr id="css-transform-scale-001-8" class="">
<td>
<a href="css-transform-scale-001.htm">css-transform-scale-001</a></td>
<td><a href="reference/css-transform-scale-ref-001.htm">=</a> </td>
<td></td>
<td>transform property with scale function on hover state
<ul class="assert">
<li>When the element is hovered over, the transform scales the element to twice its size in both the X and Y directions and moves its origin to the top left corner.</li>
</ul>
</td>
</tr>
<tr id="css-transform-scale-002-8" class="">
<td>
<a href="css-transform-scale-002.htm">css-transform-scale-002</a></td>
<td><a href="reference/css-transform-scale-ref-002.htm">=</a> </td>
<td></td>
<td>transform property with scale function and move its origin
<ul class="assert">
<li>The transform scales the element to twice its size in both the X and Y directions and moves its origin to the top left corner.</li>
</ul>
</td>
</tr>
<tr id="regions-transforms-014-8" class="">
<td>
<a href="regions-transforms-014.htm">regions-transforms-014</a></td>
<td><a href="reference/regions-transforms-014-ref.htm">=</a> </td>
<td></td>
<td>CSS Regions: Transform region with position:absolute and transform-origin
<ul class="assert">
<li>This test checks that the transform and transform-origin are applied to a region with absolute positioning.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-001-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-001.htm">svg-origin-length-001</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - default value
<ul class="assert">
<li>The transform-origin should be 0 0 by default for SVG elements without associated CSS Layout Box.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-002-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-002.htm">svg-origin-length-002</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0 0
<ul class="assert">
<li>The transform-origin should be 0 0 by default, so the current value shouldn't make a difference.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-003-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-003.htm">svg-origin-length-003</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 100px 0
<ul class="assert">
<li>The transform-origin should translate the origin by (100,0) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-004-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-004.htm">svg-origin-length-004</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0 100px
<ul class="assert">
<li>The transform-origin should translate the origin by (0,100px) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-005-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-005.htm">svg-origin-length-005</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 50px 50px
<ul class="assert">
<li>The transform-origin should translate the origin by (50px,50px) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-006-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-006.htm">svg-origin-length-006</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 100px 0
<ul class="assert">
<li>The transform-origin should translate the origin by (100,0) temporarily and must support unit less values for presentation attributes.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-007-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-007.htm">svg-origin-length-007</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0 100
<ul class="assert">
<li>The transform-origin should translate the origin by (0,100px) temporarily and must support unit less values for presentation attributes.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-008-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-008.htm">svg-origin-length-008</a></strong></td>
<td><a href="reference/svg-origin-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 50 50
<ul class="assert">
<li>The transform-origin should translate the origin by (50px,50px) temporarily and must support unit less values for presentation attributes.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-cm-001-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-cm-001.htm">svg-origin-length-cm-001</a></strong></td>
<td><a href="reference/svg-origin-length-cm-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values in cm - default value
<ul class="assert">
<li>The transform-origin should be 0 0 by default for SVG elements without associated CSS Layout Box.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-cm-002-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-cm-002.htm">svg-origin-length-cm-002</a></strong></td>
<td><a href="reference/svg-origin-length-cm-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values in cm - 0 0
<ul class="assert">
<li>The transform-origin should be 0 0 by default, so the current value shouldn't make a difference.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-cm-003-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-cm-003.htm">svg-origin-length-cm-003</a></strong></td>
<td><a href="reference/svg-origin-length-cm-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 2cm 0
<ul class="assert">
<li>The transform-origin should translate the origin by (2cm,0) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-cm-004-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-cm-004.htm">svg-origin-length-cm-004</a></strong></td>
<td><a href="reference/svg-origin-length-cm-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0 2cm
<ul class="assert">
<li>The transform-origin should translate the origin by (0,2cm) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-cm-005-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-cm-005.htm">svg-origin-length-cm-005</a></strong></td>
<td><a href="reference/svg-origin-length-cm-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 1cm 1cm
<ul class="assert">
<li>The transform-origin should translate the origin by (1cm,1cm) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-in-001-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-in-001.htm">svg-origin-length-in-001</a></strong></td>
<td><a href="reference/svg-origin-length-in-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values in inch - default value
<ul class="assert">
<li>The transform-origin should be 0 0 by default for SVG elements without associated CSS Layout Box.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-in-002-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-in-002.htm">svg-origin-length-in-002</a></strong></td>
<td><a href="reference/svg-origin-length-in-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values in inch - 0 0
<ul class="assert">
<li>The transform-origin should be 0 0 by default, so the current value shouldn't make a difference.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-in-003-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-in-003.htm">svg-origin-length-in-003</a></strong></td>
<td><a href="reference/svg-origin-length-in-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 1.5in 0
<ul class="assert">
<li>The transform-origin should translate the origin by (1.5in,0) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-in-004-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-in-004.htm">svg-origin-length-in-004</a></strong></td>
<td><a href="reference/svg-origin-length-in-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0 1.5in
<ul class="assert">
<li>The transform-origin should translate the origin by (0,1.5in) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-in-005-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-in-005.htm">svg-origin-length-in-005</a></strong></td>
<td><a href="reference/svg-origin-length-in-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0.75in 0.75in
<ul class="assert">
<li>The transform-origin should translate the origin by (0.75in, 0.75in) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-pt-001-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-pt-001.htm">svg-origin-length-pt-001</a></strong></td>
<td><a href="reference/svg-origin-length-pt-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values in pt - default value
<ul class="assert">
<li>The transform-origin should be 0 0 by default for SVG elements without associated CSS Layout Box.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-pt-002-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-pt-002.htm">svg-origin-length-pt-002</a></strong></td>
<td><a href="reference/svg-origin-length-pt-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values in pt - 0 0
<ul class="assert">
<li>The transform-origin should be 0 0 by default, so the current value shouldn't make a difference.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-pt-003-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-pt-003.htm">svg-origin-length-pt-003</a></strong></td>
<td><a href="reference/svg-origin-length-pt-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 80pt 0
<ul class="assert">
<li>The transform-origin should translate the origin by (80pt,0) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-pt-004-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-pt-004.htm">svg-origin-length-pt-004</a></strong></td>
<td><a href="reference/svg-origin-length-pt-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 0 80pt
<ul class="assert">
<li>The transform-origin should translate the origin by (0,80pt) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-length-pt-005-8" class="primary svg">
<td><strong>
<a href="svg-origin-length-pt-005.htm">svg-origin-length-pt-005</a></strong></td>
<td><a href="reference/svg-origin-length-pt-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin with length values - 40pt 40pt
<ul class="assert">
<li>The transform-origin should translate the origin by (40pt,40pt) temporarily.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-001-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-001.htm">svg-origin-relative-length-001</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, first value absolute value and missing second argument
<ul class="assert">
<li>If only one value is specified, the second value is assumed to be 'center'. The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-002-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-002.htm">svg-origin-relative-length-002</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, first value 'center' value and missing second argument
<ul class="assert">
<li>If only one value is specified, the second value is assumed to be 'center'. The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-003-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-003.htm">svg-origin-relative-length-003</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, first value '50%' value and missing second argument
<ul class="assert">
<li>If only one value is specified, the second value is assumed to be 'center'. The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-004-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-004.htm">svg-origin-relative-length-004</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '50% 50%'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-005-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-005.htm">svg-origin-relative-length-005</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '50% center'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-006-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-006.htm">svg-origin-relative-length-006</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center 50%'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-007-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-007.htm">svg-origin-relative-length-007</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center center'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-008-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-008.htm">svg-origin-relative-length-008</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '75 center'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-009-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-009.htm">svg-origin-relative-length-009</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '75 50%'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-010-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-010.htm">svg-origin-relative-length-010</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center 75'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-011-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-011.htm">svg-origin-relative-length-011</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '50% 75'
<ul class="assert">
<li>The rect should be rotated around its center point at 75,75</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-012-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-012.htm">svg-origin-relative-length-012</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '0'
<ul class="assert">
<li>The initial point of origin gets translated to 0,75. Since the second argument is missing, it is set to 'center'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-013-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-013.htm">svg-origin-relative-length-013</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '150'
<ul class="assert">
<li>The initial point of origin gets translated to 150,75. Since the second argument is missing, it is set to 'center'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-014-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-014.htm">svg-origin-relative-length-014</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '100%'
<ul class="assert">
<li>The initial point of origin gets translated to 150,75. Since the second argument is missing, it is set to 'center'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-015-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-015.htm">svg-origin-relative-length-015</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right'
<ul class="assert">
<li>The initial point of origin gets translated to 150,75. Since the second argument is missing, it is set to 'center'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-016-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-016.htm">svg-origin-relative-length-016</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left'
<ul class="assert">
<li>The initial point of origin gets translated to 75,75. Since the second argument is missing, it is set to 'center'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-017-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-017.htm">svg-origin-relative-length-017</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '25%'
<ul class="assert">
<li>If the second argument is missing, it is assumed to be center. The initial point of origin gets translated to 37.5,75.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-018-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-018.htm">svg-origin-relative-length-018</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'top'
<ul class="assert">
<li>The initial point of origin gets translated to 75,0. A single argument 'top' gets interpreted as 'center top'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-019-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-019.htm">svg-origin-relative-length-019</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'bottom'
<ul class="assert">
<li>The initial point of origin gets translated to 75,150. A single argument 'bottom' gets interpreted as 'center bottom'.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-020-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-020.htm">svg-origin-relative-length-020</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '0% 0%'
<ul class="assert">
<li>The initial point of origin gets translated to 75,75 since '0% 0%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-021-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-021.htm">svg-origin-relative-length-021</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'top right'
<ul class="assert">
<li>The initial point of origin gets translated to 225,75 since 'top right' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-022-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-022.htm">svg-origin-relative-length-022</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'top left'
<ul class="assert">
<li>The initial point of origin gets translated to 75,75 since 'top left' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-023-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-023.htm">svg-origin-relative-length-023</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'top center'
<ul class="assert">
<li>The initial point of origin gets translated to 150,75 since 'top center' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-024-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-024.htm">svg-origin-relative-length-024</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'bottom left'
<ul class="assert">
<li>The initial point of origin gets translated to 75,225 since 'bottom left' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-025-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-025.htm">svg-origin-relative-length-025</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'bottom center'
<ul class="assert">
<li>The initial point of origin gets translated to 150,225 since 'bottom center' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-026-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-026.htm">svg-origin-relative-length-026</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'bottom right'
<ul class="assert">
<li>The initial point of origin gets translated to 225,225 since 'bottom right' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-027-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-027.htm">svg-origin-relative-length-027</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right top'
<ul class="assert">
<li>The initial point of origin gets translated to 225,75 since 'right top' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-028-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-028.htm">svg-origin-relative-length-028</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right center'
<ul class="assert">
<li>The initial point of origin gets translated to 225,150 since 'right center' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-029-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-029.htm">svg-origin-relative-length-029</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right bottom'
<ul class="assert">
<li>The initial point of origin gets translated to 225,225 since 'right bottom' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-030-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-030.htm">svg-origin-relative-length-030</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right 75'
<ul class="assert">
<li>The initial point of origin gets translated to 225,75 since 'right 75' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-031-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-031.htm">svg-origin-relative-length-031</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right 0%'
<ul class="assert">
<li>The initial point of origin gets translated to 225,75 since 'right 0%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-032-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-032.htm">svg-origin-relative-length-032</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'right 100%'
<ul class="assert">
<li>The initial point of origin gets translated to 225,225 since 'right 100%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-033-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-033.htm">svg-origin-relative-length-033</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left top'
<ul class="assert">
<li>The initial point of origin gets translated to 75,75 since 'left top' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-034-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-034.htm">svg-origin-relative-length-034</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left center'
<ul class="assert">
<li>The initial point of origin gets translated to 75,150 since 'left center' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-035-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-035.htm">svg-origin-relative-length-035</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left bottom'
<ul class="assert">
<li>The initial point of origin gets translated to 75,225 since 'left bottom' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-036-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-036.htm">svg-origin-relative-length-036</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left 75'
<ul class="assert">
<li>The initial point of origin gets translated to 75,75 since 'left 75' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-037-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-037.htm">svg-origin-relative-length-037</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left 0%'
<ul class="assert">
<li>The initial point of origin gets translated to 75,75 since 'left 0%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-038-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-038.htm">svg-origin-relative-length-038</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'left 100%'
<ul class="assert">
<li>The initial point of origin gets translated to 75,225 since 'left 100%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-039-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-039.htm">svg-origin-relative-length-039</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center top'
<ul class="assert">
<li>The initial point of origin gets translated to 150,75 since 'center top' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-040-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-040.htm">svg-origin-relative-length-040</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center bottom'
<ul class="assert">
<li>The initial point of origin gets translated to 150,225 since 'center bottom' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-041-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-041.htm">svg-origin-relative-length-041</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center left'
<ul class="assert">
<li>The initial point of origin gets translated to 75,150 since 'center left' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-042-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-042.htm">svg-origin-relative-length-042</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center right'
<ul class="assert">
<li>The initial point of origin gets translated to 225,150 since 'center right' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-043-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-043.htm">svg-origin-relative-length-043</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center 100%'
<ul class="assert">
<li>The initial point of origin gets translated to 150,225 since 'center 100%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-044-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-044.htm">svg-origin-relative-length-044</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, '0 center'
<ul class="assert">
<li>The initial point of origin gets translated to 0,150 since '0 center' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-045-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-045.htm">svg-origin-relative-length-045</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center 0%'
<ul class="assert">
<li>The initial point of origin gets translated to 150,75 since 'center 0%' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-046-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-046.htm">svg-origin-relative-length-046</a></strong></td>
<td><a href="reference/svg-origin-relative-length-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, 'center 0'
<ul class="assert">
<li>The initial point of origin gets translated to 150,0 since 'center 0' is relative to the bounding box of the object.</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-001-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-001.htm">svg-origin-relative-length-invalid-001</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'top 100%'
<ul class="assert">
<li>Spec does not allow first value to be vertical if at least one of the first two passed values are not keywords. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-002-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-002.htm">svg-origin-relative-length-invalid-002</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'bottom 100%'
<ul class="assert">
<li>Spec does not allow first value to be vertical if at least one of the first two passed values are not keywords. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-003-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-003.htm">svg-origin-relative-length-invalid-003</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'top 150'
<ul class="assert">
<li>Spec does not allow first value to be vertical if at least one of the first two passed values are not keywords. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-004-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-004.htm">svg-origin-relative-length-invalid-004</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'bottom 150'
<ul class="assert">
<li>Spec does not allow first value to be vertical if at least one of the first two passed values are not keywords. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-005-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-005.htm">svg-origin-relative-length-invalid-005</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'top top'
<ul class="assert">
<li>Spec does not allow two vertical values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-006-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-006.htm">svg-origin-relative-length-invalid-006</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'bottom bottom'
<ul class="assert">
<li>Spec does not allow two vertical values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-007-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-007.htm">svg-origin-relative-length-invalid-007</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'top bottom'
<ul class="assert">
<li>Spec does not allow two vertical values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-008-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-008.htm">svg-origin-relative-length-invalid-008</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'bottom top'
<ul class="assert">
<li>Spec does not allow two vertical values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-009-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-009.htm">svg-origin-relative-length-invalid-009</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'left left'
<ul class="assert">
<li>Spec does not allow two horizontal values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-010-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-010.htm">svg-origin-relative-length-invalid-010</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'left right'
<ul class="assert">
<li>Spec does not allow two horizontal values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-011-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-011.htm">svg-origin-relative-length-invalid-011</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'right right'
<ul class="assert">
<li>Spec does not allow two horizontal values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-origin-relative-length-invalid-012-8" class="primary svg">
<td><strong>
<a href="svg-origin-relative-length-invalid-012.htm">svg-origin-relative-length-invalid-012</a></strong></td>
<td><a href="reference/svg-origin-relative-length-invalid-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG presentation attribute transform-origin, invalid arguments 'right left'
<ul class="assert">
<li>Spec does not allow two horizontal values. Fallback to 0,0</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-017-8" class="svg">
<td>
<a href="svg-rotate-3args-017.htm">svg-rotate-3args-017</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with transform-origin with length values - 40px 40px
<ul class="assert">
<li>The rotate transform function must support three arguments in combination with transform-origin using absolute values. First, the transform-origin should translate the origin by 40px in both the vertical and horizontal directions temporarily to (40px 40px). Second, the green rect should be rotated by 90 degrees clockwise after the transform origin has been translated by an additional 20 pixels in both the horizontal and vertical directions, making the origin (60px 60px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-018-8" class="svg">
<td>
<a href="svg-rotate-3args-018.htm">svg-rotate-3args-018</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with transform-origin with first value 'center' and missing second argument
<ul class="assert">
<li>The rotate transform function must support three arguments in combination with transform-origin using one keyword value. First, the transform-origin value of 'center' should translate the origin by 40px in both the vertical and horizontal directions temporarily to (0px 40px), which is the center of the green rect. Second, the green rect should be rotated 90 degrees clockwise after the transform origin has been translated by 20 pixels in both the vertical and horizontal directions, making the origin (20px 60px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-019-8" class="svg">
<td>
<a href="svg-rotate-3args-019.htm">svg-rotate-3args-019</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with transform-origin with first value '50%' and missing second argument
<ul class="assert">
<li>The rotate transform function must support three arguments in combination with transform-origin using one relative value. First, the transform-origin value of '50%' should translate the origin by 40px in both the vertical and horizontal directions temporarily to (0px 40px), which is the center of the green rect. Second, the green rect should be rotated 90 degrees clockwise after the transform origin has been translated by 20 pixels in both the vertical and horizontal directions, making the origin (20px 60px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-020-8" class="svg">
<td>
<a href="svg-rotate-3args-020.htm">svg-rotate-3args-020</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with transform-origin with first value 'right' and second value 'top'
<ul class="assert">
<li>The rotate transform function must support three arguments in combination with transform-origin using two keyword values. First, the transform-origin value of 'right top' should translate the origin by 40px in the horizontal direction and by 80px in the vertical direction temporarily to (40px 80px), which is the top right corner of the green rect. Second, the green rect should be rotated 90 degrees clockwise after the transform origin has been translated by 20 pixels in both the vertical and horizontal directions, making the origin (60px 100px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-021-8" class="svg">
<td>
<a href="svg-rotate-3args-021.htm">svg-rotate-3args-021</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with relative translation-values combined with absolute transform-origin length values
<ul class="assert">
<li>The rotate transform function must support three arguments with relative translation-values in combination with transform-origin using two absolute pixel values. First, the transform-origin value of '40px 40px' should translate the origin by 40px in both the vertical and horizontal directions temporarily to (40px 40px). Second, the green rect should be rotated 90 degrees clockwise after the transform origin has been translated by an additional 20 pixels in both the horizontal and vertical directions, making the origin (60px 60px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-022-8" class="svg">
<td>
<a href="svg-rotate-3args-022.htm">svg-rotate-3args-022</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with absolute translation-values combined with relative transform-origin length values
<ul class="assert">
<li>The rotate transform function must support three arguments with absolute translation-values in combination with transform-origin using two relative values. First, the transform-origin value of '25% 25%' should translate the origin by 20px in both the vertical and horizontal directions temporarily to (-20px 20px). Second, the green rect should be rotated 90 degrees clockwise after the transform origin has been translated by an additional 40 pixels in both the horizontal and vertical directions, making the origin (20px 60px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="svg-rotate-3args-023-8" class="svg">
<td>
<a href="svg-rotate-3args-023.htm">svg-rotate-3args-023</a></td>
<td><a href="reference/svg-rotate-3args-ref.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>SVG rotate with three arguments with relative translation-values combined with relative transform-origin length values
<ul class="assert">
<li>The rotate transform function must support three arguments with relative translation-values in combination with transform-origin using two relative values. First, the transform-origin value of '25% 25%' should translate the origin by 20px in both the vertical and horizontal directions temporarily to (-20px 20px). Second, the green rect should be rotated 90 degrees clockwise after the transform origin has been translated by an additional 40 pixels in both the horizontal and vertical directions, making the origin (20px 60px) temporarily. The green rect should completely cover the red rect.</li>
</ul>
</td>
</tr>
<tr id="transform-inherit-origin-001-8" class="primary">
<td><strong>
<a href="transform-inherit-origin-001.htm">transform-inherit-origin-001</a></strong></td>
<td><a href="reference/transform-inherit-origin-ref.htm">=</a> </td>
<td></td>
<td>"transform-origin: inherit" and em
<ul class="assert">
<li>The 'transform-origin' property's computed value (which is what's inherited if 'inherit' is specified) is defined as "For <length> the absolute value, otherwise a percentage." In this test, a parent element has a transform-origin of '5em 10em' with a font-size of 10px, and the child has "transform-origin: inherit". Since the relative length of 5em is converted to an absolute length before inheritance, the transform-origin should be at the bottom of the child, 50px 100px. The 180deg rotation should thus effectively move the child down 100px. An implementation that incorrectly inherited the transform-origin value before converting to an absolute length would treat it as 100px 200px, since the child has a font-size of 20px, so it would effectively translate the child 100px right and 300px down.</li>
</ul>
</td>
</tr>
<tr id="transform-inherit-origin-002-8" class="primary">
<td><strong>
<a href="transform-inherit-origin-002.htm">transform-inherit-origin-002</a></strong></td>
<td><a href="reference/transform-inherit-origin-ref.htm">=</a> </td>
<td></td>
<td>"transform-origin: inherit" and percentages
<ul class="assert">
<li>The 'transform-origin' property's computed value (which is what's inherited if 'inherit' is specified) is defined as "For <length> the absolute value, otherwise a percentage." In this test, a parent element has a transform-origin of '50% 100%' with a height/width of 50px, and the child has "transform-origin: inherit" with a height/width of 100px. Since the transform-origin is a percentage, it's inherited before it gets resolved to a length. This means it works out to 50px 100px on the child, at its center, so the 180deg rotation should translate the child down by 100px. An implementation that incorrectly resolved the transform-origin to 25px 50px before inheritance would instead display the child box translated left 75px.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-001-8" class="primary">
<td><strong>
<a href="transform-origin-001.htm">transform-origin-001</a></strong></td>
<td><a href="reference/transform-origin-ref-1.htm">≠</a> </td>
<td></td>
<td>Default transform-origin not top left
<ul class="assert">
<li>A transform-origin of 0% 0% must not result in the same rendering as the default of 50% 50%, if a 45-degree rotation is applied.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-002-8" class="primary">
<td><strong>
<a href="transform-origin-002.htm">transform-origin-002</a></strong></td>
<td><a href="reference/transform-origin-ref-1.htm">≠</a> </td>
<td></td>
<td>Default transform-origin not center right
<ul class="assert">
<li>A transform-origin of 100% 50% must not result in the same rendering as the default of 50% 50%, if a 45-degree rotation is applied.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-003-8" class="primary">
<td><strong>
<a href="transform-origin-003.htm">transform-origin-003</a></strong></td>
<td><a href="reference/transform-origin-ref-2.htm">=</a> </td>
<td></td>
<td>transform-origin percentages 1
<ul class="assert">
<li>A transform-origin of 101px 51px must result in the same rendering as the default of 50% 50% in this case. The content box is 200x100px, so with a 1px border, the border box is 202x102px. transform-origin is computed relative to the border box. (Note: an implementation that incorrectly computes transform-origin percentages relative to the content box would fail this test by only a few pixels, so care is needed in checking that the test and reference renderings match exactly.)</li>
</ul>
</td>
</tr>
<tr id="transform-origin-004-8" class="primary">
<td><strong>
<a href="transform-origin-004.htm">transform-origin-004</a></strong></td>
<td><a href="reference/transform-origin-ref-2.htm">=</a> </td>
<td></td>
<td>transform-origin percentages 2
<ul class="assert">
<li>A transform-origin of 101px 50% must result in the same rendering as the default of 50% 50% in this case. The content box is 200x100px, so with a 1px border, the border box is 202x102px. transform-origin is computed relative to the border box. (Note: an implementation that incorrectly computes transform-origin percentages relative to the content box would fail this test by only a few pixels, so care is needed in checking that the test and reference renderings match exactly.)</li>
</ul>
</td>
</tr>
<tr id="transform-origin-005-8" class="primary">
<td><strong>
<a href="transform-origin-005.htm">transform-origin-005</a></strong></td>
<td><a href="reference/transform-origin-ref-2.htm">=</a> </td>
<td></td>
<td>transform-origin percentages 3
<ul class="assert">
<li>A transform-origin of 50% 51px must result in the same rendering as the default of 50% 50% in this case. The content box is 200x100px, so with a 1px border, the border box is 202x102px. transform-origin is computed relative to the border box. (Note: an implementation that incorrectly computes transform-origin percentages relative to the content box would fail this test by only a few pixels, so care is needed in checking that the test and reference renderings match exactly.)</li>
</ul>
</td>
</tr>
<tr id="transform-origin-006-8" class="primary">
<td><strong>
<a href="transform-origin-006.htm">transform-origin-006</a></strong></td>
<td><a href="reference/transform-origin-ref-2.htm">=</a> </td>
<td></td>
<td>transform-origin percentages 4
<ul class="assert">
<li>Percentages in transform-origin refer to the size of the element's border box. This tests that they don't refer to the content, padding, or margin box by applying nonzero margin, border, and padding. (Note: an implementation that resolves percentages relative to the incorrect box might fail this test by only a few pixels, so it's important to check that the test and reference renderings match exactly.)</li>
</ul>
</td>
</tr>
<tr id="transform-origin-007-8" class="primary">
<td><strong>
<a href="transform-origin-007.htm">transform-origin-007</a></strong></td>
<td><a href="reference/transform-origin-007-ref.htm">=</a> </td>
<td></td>
<td>transform-origin - 50% bottom('bottom' computes to '100%' in vertical position)
<ul class="assert">
<li>The 'transform-origin' property set 'bottom' computes to 100% for the vertical position.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-008-8" class="primary">
<td><strong>
<a href="transform-origin-008.htm">transform-origin-008</a></strong></td>
<td><a href="reference/transform-origin-007-ref.htm">=</a> </td>
<td></td>
<td>transform-origin - center 0%('center' computes to '50%' in horizontal position)
<ul class="assert">
<li>The 'transform-origin' property set 'center' computes to 50%(left 50%) for the horizontal position.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-009-8" class="primary">
<td><strong>
<a href="transform-origin-009.htm">transform-origin-009</a></strong></td>
<td><a href="reference/transform-origin-007-ref.htm">=</a> </td>
<td></td>
<td>transform-origin - 0% center('center' computes to '50%' in vertical position)
<ul class="assert">
<li>The 'transform-origin' property set 'center' computes to 50%(top 50%) for the vertical position.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-01-8" class="primary">
<td><strong>
<a href="transform-origin-01.htm">transform-origin-01</a></strong></td>
<td><a href="reference/transform-origin-01-ref.htm">=</a> </td>
<td></td>
<td>SVG Transform using transform-origin
<ul class="assert">
<li>If only one value is specified, the second value is assumed to be &acirc;&#8364;&#732;center&acirc;&#8364;&#8482;</li>
</ul>
</td>
</tr>
<tr id="transform-origin-010-8" class="primary">
<td><strong>
<a href="transform-origin-010.htm">transform-origin-010</a></strong></td>
<td><a href="reference/transform-origin-007-ref.htm">=</a> </td>
<td></td>
<td>transform-origin - left 0%('left' computes to '0%' in horizontal position)
<ul class="assert">
<li>The 'transform-origin' property set 'left' computes to 0% for the horizontal position.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-011-8" class="primary">
<td><strong>
<a href="transform-origin-011.htm">transform-origin-011</a></strong></td>
<td><a href="reference/transform-origin-007-ref.htm">=</a> </td>
<td></td>
<td>transform-origin - right 100%('right' computes to '100%' in horizontal position)
<ul class="assert">
<li>The 'transform-origin' property set 'right' computes to 100% for the horizontal position.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-012-8" class="primary">
<td><strong>
<a href="transform-origin-012.htm">transform-origin-012</a></strong></td>
<td><a href="reference/transform-origin-007-ref.htm">=</a> </td>
<td></td>
<td>transform-origin - 0% top('top' computes to '0%' in vertical position)
<ul class="assert">
<li>The 'transform-origin' property set 'top' computes to 0% for the vertical position.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-001-8" class="primary">
<td><strong>
<a href="transform-origin-name-001.htm">transform-origin-name-001</a></strong></td>
<td><a href="reference/transform-origin-name-ref-1.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: top left
<ul class="assert">
<li>This tests that 'transform-origin: top left' is the same as 'transform-origin: 0% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-002-8" class="primary">
<td><strong>
<a href="transform-origin-name-002.htm">transform-origin-name-002</a></strong></td>
<td><a href="reference/transform-origin-name-ref-1.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: left top
<ul class="assert">
<li>This tests that 'transform-origin: left top' is the same as 'transform-origin: 0% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-003-8" class="primary">
<td><strong>
<a href="transform-origin-name-003.htm">transform-origin-name-003</a></strong></td>
<td><a href="reference/transform-origin-name-ref-2.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: top
<ul class="assert">
<li>This tests that 'transform-origin: top' is the same as 'transform-origin: 50% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-004-8" class="primary">
<td><strong>
<a href="transform-origin-name-004.htm">transform-origin-name-004</a></strong></td>
<td><a href="reference/transform-origin-name-ref-2.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: top center
<ul class="assert">
<li>This tests that 'transform-origin: top center' is the same as 'transform-origin: 50% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-005-8" class="primary">
<td><strong>
<a href="transform-origin-name-005.htm">transform-origin-name-005</a></strong></td>
<td><a href="reference/transform-origin-name-ref-2.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: center top
<ul class="assert">
<li>This tests that 'transform-origin: center top' is the same as 'transform-origin: 50% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-006-8" class="primary">
<td><strong>
<a href="transform-origin-name-006.htm">transform-origin-name-006</a></strong></td>
<td><a href="reference/transform-origin-name-ref-3.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: top right
<ul class="assert">
<li>This tests that 'transform-origin: top right' is the same as 'transform-origin: 100% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform-origin-name-007-8" class="primary">
<td><strong>
<a href="transform-origin-name-007.htm">transform-origin-name-007</a></strong></td>
<td><a href="reference/transform-origin-name-ref-3.htm">=</a> <a href="reference/transform-origin-name-notref.htm">≠</a> </td>
<td></td>
<td>transform-origin: right top
<ul class="assert">
<li>This tests that 'transform-origin: right top' is the same as 'transform-origin: 100% 0%'.</li>
</ul>
</td>
</tr>
<tr id="transform3d-rotatex-transformorigin-001-8" class="primary">
<td><strong>
<a href="transform3d-rotatex-transformorigin-001.htm">transform3d-rotatex-transformorigin-001</a></strong></td>
<td><a href="reference/transform3d-rotatex-transformorigin-ref.htm">=</a> <a href="reference/transform-lime-square-ref.htm">≠</a> </td>
<td></td>
<td>rotateX() with 'transform-origin'
<ul class="assert">
<li>This tests that rotateX(45deg) has the same effect (with perspective) with a top left origin and a top right origin. It should make no difference, because it doesn't change the axis of rotation: it's still the top. (This doesn't actually test the perspective property, since a UA that doesn't support perspective at all could still pass.)</li>
</ul>
</td>
</tr>
<tr id="transform3d-translate3d-001-8" class="primary">
<td><strong>
<a href="transform3d-translate3d-001.htm">transform3d-translate3d-001</a></strong></td>
<td><a href="reference/transform3d-translate3d-ref.htm">=</a> <a href="reference/transform-lime-square-ref.htm">≠</a> </td>
<td></td>
<td>translate3d() vs. 'transform-origin'
<ul class="assert">
<li>This tests that translate3d() before and after rotatex() is the same as an equivalent 'transform-origin'.</li>
</ul>
</td>
</tr>
<tr id="transform3d-translatez-001-8" class="primary">
<td><strong>
<a href="transform3d-translatez-001.htm">transform3d-translatez-001</a></strong></td>
<td><a href="reference/transform3d-translatez-ref.htm">=</a> <a href="reference/transform3d-translatez-notref.htm">≠</a> </td>
<td></td>
<td>translatez() vs. 'transform-origin'
<ul class="assert">
<li>This tests that translatez(+-10px) before and after rotatex() is the same as an equivalent 'transform-origin', and different from translatez(+-20px).</li>
</ul>
</td>
</tr>
</tbody>
<tbody id="s8.#propdef-transform-origin">
<!-- 1 tests -->
<tr id="transform-origin-8.#propdef-transform-origin" class="primary">
<td><strong>
<a href="transform-origin.htm">transform-origin</a></strong></td>
<td><a href="reference/transform-origin-ref.htm">=</a> </td>
<td></td>
<td>transform-origin
<ul class="assert">
<li>The transform should change the transform-origin to the bottom right and rotate 180 degrees</li>
</ul>
</td>
</tr>
</tbody>
<tbody id="s8.#valuedef-bottom0">
<!-- 0 tests -->
</tbody>
<tbody id="s8.#valuedef-center0">
<!-- 0 tests -->
</tbody>
<tbody id="s8.#valuedef-left0">
<!-- 0 tests -->
</tbody>
<tbody id="s8.#valuedef-right0">
<!-- 0 tests -->
</tbody>
<tbody id="s8.#valuedef-top0">
<!-- 0 tests -->
</tbody>
</table>
</body>
</html>
|