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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>The transform 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 Property (104 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="s7">
<tr><th colspan="4" scope="rowgroup">
<a href="#s7">+</a>
<a href="http://www.w3.org/TR/css-transforms-1/#transform-property">7 The transform Property</a></th></tr>
<!-- 103 tests -->
<tr id="2d-rotate-001-7" class="primary css3, rotate, svg">
<td><strong>
<a href="2d-rotate-001.htm">2d-rotate-001</a></strong></td>
<td><a href="reference/2d-rotate-ref.htm">=</a> <a href="reference/2d-rotate-notref.htm">≠</a> </td>
<td><abbr class="css3," title=""></abbr><abbr class="rotate," title=""></abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>CSS Transform using 2d rotate()
<ul class="assert">
<li>asserting that you can rotate an element with CSS</li>
</ul>
</td>
</tr>
<tr id="2d-rotate-js-7" class="primary css3, rotate, svg">
<td><strong>
<a href="2d-rotate-js.htm">2d-rotate-js</a></strong></td>
<td></td>
<td><abbr class="css3," title=""></abbr><abbr class="rotate," title=""></abbr><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Rotate via javascript must show the correct computed rotation
<ul class="assert">
<li>Asserting that you can rotate an element with JS and it show up in CSS computed values not as a matrix but as the rotation</li>
</ul>
</td>
</tr>
<tr id="backface-visibility-hidden-001-7" class="primary">
<td><strong>
<a href="backface-visibility-hidden-001.htm">backface-visibility-hidden-001</a></strong></td>
<td><a href="reference/backface-visibility-hidden-ref.htm">=</a> </td>
<td></td>
<td>transform property with backface visibility = hidden
<ul class="assert">
<li>When the value of backface visibility property is 'hidden', the back side of a transformed element is invisible when facing the viewer.</li>
</ul>
</td>
</tr>
<tr id="css-scale-nested-001-7" class="primary">
<td><strong>
<a href="css-scale-nested-001.htm">css-scale-nested-001</a></strong></td>
<td><a href="reference/css-scale-nested-ref.htm">=</a> </td>
<td></td>
<td>scale 0 on a parent with a child
<ul class="assert">
<li>Child square element is transformed (scaled to zero) along with the parent element</li>
</ul>
</td>
</tr>
<tr id="css-transform-inherit-rotate-7" class="primary">
<td><strong>
<a href="css-transform-inherit-rotate.htm">css-transform-inherit-rotate</a></strong></td>
<td></td>
<td></td>
<td>CSS transforms rotate inheritance on div element
<ul class="assert">
<li>Rotation on parent element will not be inherited by child element, unless declared. The test is passed if there is a green square and no red. And it is rotated 45 degree.</li>
</ul>
</td>
</tr>
<tr id="css-transform-inherit-scale-7" class="primary">
<td><strong>
<a href="css-transform-inherit-scale.htm">css-transform-inherit-scale</a></strong></td>
<td></td>
<td></td>
<td>CSS transforms scale 2 inheritance on div elements
<ul class="assert">
<li>While child div inherits property from its parent, scaling 2 on parent div will course the child to scale 4 and totally cover the red div. The test passes if there is a green square and no red.</li>
</ul>
</td>
</tr>
<tr id="css-transform-scale-001-7" class="primary">
<td><strong>
<a href="css-transform-scale-001.htm">css-transform-scale-001</a></strong></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-7" class="primary">
<td><strong>
<a href="css-transform-scale-002.htm">css-transform-scale-002</a></strong></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="css-transform-style-evaluation-validation-7" class="primary dom script">
<td><strong>
<a href="css-transform-style-evaluation-validation.htm">css-transform-style-evaluation-validation</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>property
</td>
</tr>
<tr id="css3-transform-rotatey-7" class="primary">
<td><strong>
<a href="css3-transform-rotateY.htm">css3-transform-rotatey</a></strong></td>
<td><a href="reference/css3-transform-rotateY-ref.htm">=</a> </td>
<td></td>
<td>transform property with rotateY function
<ul class="assert">
<li>box width should be equal to projection width if transform rotateY applied</li>
</ul>
</td>
</tr>
<tr id="css3-transform-scale-7" class="primary">
<td><strong>
<a href="css3-transform-scale.htm">css3-transform-scale</a></strong></td>
<td><a href="reference/css3-transform-scale-ref.htm">=</a> </td>
<td></td>
<td>transform property with scale function
<ul class="assert">
<li>box width and height will be twice larger if transform scale(2) applied</li>
</ul>
</td>
</tr>
<tr id="css3-transform-scale-002-7" class="primary">
<td><strong>
<a href="css3-transform-scale-002.htm">css3-transform-scale-002</a></strong></td>
<td><a href="reference/css3-transform-scale-ref-002.htm">=</a> </td>
<td></td>
<td>transform property with scale function
<ul class="assert">
<li>box width and height will be twice larger if transform scale(2) applied</li>
</ul>
</td>
</tr>
<tr id="perspective-origin-x-7" class="">
<td>
<a href="perspective-origin-x.htm">perspective-origin-x</a></td>
<td><a href="reference/perspective-origin-reftest.htm">=</a> </td>
<td></td>
<td>perspective property
<ul class="assert">
<li>Asserts that origin 'x1' visually moves the objects '-x1*d/(d-1)'</li>
</ul>
</td>
</tr>
<tr id="perspective-origin-xy-7" class="">
<td>
<a href="perspective-origin-xy.htm">perspective-origin-xy</a></td>
<td><a href="reference/perspective-reftest.htm">=</a> </td>
<td></td>
<td>perspective property
<ul class="assert">
<li>Asserts that origin '<x,y>' visually moves the objects '<-x,-y>*d/(d-1)'</li>
</ul>
</td>
</tr>
<tr id="perspective-translatez-0-7" class="">
<td>
<a href="perspective-translateZ-0.htm">perspective-translatez-0</a></td>
<td><a href="reference/perspective-reftest.htm">=</a> </td>
<td></td>
<td>perspective property
<ul class="assert">
<li>Asserts that points on the z=0 plane are unchanged</li>
</ul>
</td>
</tr>
<tr id="perspective-translatez-negative-7" class="">
<td>
<a href="perspective-translateZ-negative.htm">perspective-translatez-negative</a></td>
<td><a href="reference/perspective-reftest.htm">=</a> </td>
<td></td>
<td>perspective property
<ul class="assert">
<li>Asserts that the scaling is proportional to d/(d &acirc;&#710;&#8217; Z) for a negative Z</li>
</ul>
</td>
</tr>
<tr id="perspective-translatez-positive-7" class="">
<td>
<a href="perspective-translateZ-positive.htm">perspective-translatez-positive</a></td>
<td><a href="reference/perspective-reftest.htm">=</a> </td>
<td></td>
<td>perspective property
<ul class="assert">
<li>Asserts that the scaling is proportional to d/(d &acirc;&#710;&#8217; Z) for a positive Z</li>
</ul>
</td>
</tr>
<tr id="rotate-180-degrees-001-7" class="primary">
<td><strong>
<a href="rotate-180-degrees-001.htm">rotate-180-degrees-001</a></strong></td>
<td></td>
<td></td>
<td>transform - rotate 180 deg
</td>
</tr>
<tr id="rotate-270-degrees-001-7" class="primary">
<td><strong>
<a href="rotate-270-degrees-001.htm">rotate-270-degrees-001</a></strong></td>
<td></td>
<td></td>
<td>transform - rotate 270 deg
</td>
</tr>
<tr id="rotate-90-degrees-001-7" class="primary">
<td><strong>
<a href="rotate-90-degrees-001.htm">rotate-90-degrees-001</a></strong></td>
<td></td>
<td></td>
<td>transform - rotate 90 deg
</td>
</tr>
<tr id="scale-optional-second-001-7" class="primary">
<td><strong>
<a href="scale-optional-second-001.htm">scale-optional-second-001</a></strong></td>
<td><a href="reference/scale-optional-second-ref.htm">=</a> </td>
<td></td>
<td>transform property with scale function and one parameter
<ul class="assert">
<li>If the second parameter of scale function is not provided, it takes a value equal to the first. This transform causes the element to appear twice as long in both the X and Y axes.</li>
</ul>
</td>
</tr>
<tr id="scale-zero-001-7" class="primary">
<td><strong>
<a href="scale-zero-001.htm">scale-zero-001</a></strong></td>
<td><a href="reference/scale-zero-ref.htm">=</a> </td>
<td></td>
<td>transform property with scale function and zero values
<ul class="assert">
<li>If zero value is passed to scale function, it causes the element to disappear.</li>
</ul>
</td>
</tr>
<tr id="transform-2d-getcomputedstyle-001-7" class="primary dom script">
<td><strong>
<a href="transform-2d-getComputedStyle-001.htm">transform-2d-getcomputedstyle-001</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate
<ul class="assert">
<li>CSS 2D transforms correctly report their matrix via getComputedStyle()</li>
</ul>
</td>
</tr>
<tr id="transform-applies-to-001-7" class="primary">
<td><strong>
<a href="transform-applies-to-001.htm">transform-applies-to-001</a></strong></td>
<td><a href="reference/transform-applies-to-001-ref.htm">=</a> </td>
<td></td>
<td>transform applied to elements with 'display' set to 'block'
<ul class="assert">
<li>The 'transform' property applies to elements with 'display' set to 'block'.</li>
</ul>
</td>
</tr>
<tr id="transform-applies-to-002-7" class="primary ahem">
<td><strong>
<a href="transform-applies-to-002.htm">transform-applies-to-002</a></strong></td>
<td><a href="reference/transform-applies-to-002-ref.htm">=</a> </td>
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr></td>
<td>Transform does not apply to non-replaced inline elements
<ul class="assert">
<li>The 'transform' property does not apply to non-replaced inline elements.</li>
</ul>
</td>
</tr>
<tr id="transform-background-001-7" class="primary svg">
<td><strong>
<a href="transform-background-001.htm">transform-background-001</a></strong></td>
<td><a href="reference/transform-background-ref-1.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Transform of Background Image (rotate right)
<ul class="assert">
<li>Background images fall within the element's border box, so they need to be transformed along with it.</li>
</ul>
</td>
</tr>
<tr id="transform-background-002-7" class="primary svg">
<td><strong>
<a href="transform-background-002.htm">transform-background-002</a></strong></td>
<td><a href="reference/transform-background-ref-1.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Transform of Background Image (rotate left)
<ul class="assert">
<li>Background images fall within the element's border box, so they need to be transformed along with it.</li>
</ul>
</td>
</tr>
<tr id="transform-background-003-7" class="primary svg">
<td><strong>
<a href="transform-background-003.htm">transform-background-003</a></strong></td>
<td><a href="reference/transform-background-ref-1.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Transform of Background Image (flip)
<ul class="assert">
<li>Background images fall within the element's border box, so they need to be transformed along with it.</li>
</ul>
</td>
</tr>
<tr id="transform-background-004-7" class="primary svg">
<td><strong>
<a href="transform-background-004.htm">transform-background-004</a></strong></td>
<td><a href="reference/transform-background-ref-1.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Transform of Background Image (nested flip)
<ul class="assert">
<li>Background images fall within the element's border box, so they need to be transformed along with it. This file tests that a transform on the parent works correctly, not just on the element itself.</li>
</ul>
</td>
</tr>
<tr id="transform-background-005-7" class="primary svg">
<td><strong>
<a href="transform-background-005.htm">transform-background-005</a></strong></td>
<td><a href="reference/transform-background-ref-2.htm">=</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Transform of Background Image (non-propagated body)
<ul class="assert">
<li>Background images fall within the element's border box, so they need to be transformed along with it. In this case the scale is applied to the root element, and the background is on the body. The white background on the root element prevents the body's background from propagating to the canvas, so it's just a regular background.</li>
</ul>
</td>
</tr>
<tr id="transform-background-006-7" class="primary svg">
<td><strong>
<a href="transform-background-006.htm">transform-background-006</a></strong></td>
<td><a href="reference/transform-background-ref-2.htm">=</a> <a href="reference/transform-background-006-notref.htm">≠</a> </td>
<td><abbr class="svg" title="Requires SVG support">SVG</abbr></td>
<td>Transform of Background Image (propagated body)
<ul class="assert">
<li>Background images fall within the element's border box, so they need to be transformed along with it. In this case the transform is applied to the body element, but the root element's background is transparent, so the background is actually on the root element instead of the body. Therefore, the transform must not affect the background.</li>
</ul>
</td>
</tr>
<tr id="transform-containing-block-dynamic-1a-7" class="">
<td>
<a href="transform-containing-block-dynamic-1a.htm">transform-containing-block-dynamic-1a</a></td>
<td><a href="reference/containing-block-dynamic-1-ref.htm">=</a> </td>
<td></td>
<td>CSS transforms: Creating containing block for fixed positioned elements
<ul class="assert">
<li>For elements whose layout is governed by the CSS box model, any value other than none for the transform results in the creation of both a stacking context and a containing block. The object acts as a containing block for fixed positioned descendants.</li>
<li>The object acts as a containing block for fixed positioned descendants.</li>
</ul>
</td>
</tr>
<tr id="transform-containing-block-dynamic-1b-7" class="">
<td>
<a href="transform-containing-block-dynamic-1b.htm">transform-containing-block-dynamic-1b</a></td>
<td><a href="reference/containing-block-dynamic-1-ref.htm">=</a> </td>
<td></td>
<td>CSS transforms: Creating containing block for fixed positioned elements
<ul class="assert">
<li>For elements whose layout is governed by the CSS box model, any value other than none for the transform results in the creation of both a stacking context and a containing block. The object acts as a containing block for fixed positioned descendants.</li>
<li>The object acts as a containing block for fixed positioned descendants.</li>
</ul>
</td>
</tr>
<tr id="transform-inherit-001-7" class="primary">
<td><strong>
<a href="transform-inherit-001.htm">transform-inherit-001</a></strong></td>
<td><a href="reference/transform-inherit-ref.htm">=</a> </td>
<td></td>
<td>'inherit' and em
<ul class="assert">
<li>The 'transform' property's computed value (which is what's inherited if 'inherit' is specified) is defined as "As specified, but with relative lengths converted into absolute lengths." In this test, a parent element has a transform of 1em with a font-size of 25px, and the child has "transform: inherit". Since the relative length of 1em is converted to an absolute length of 25px before inheritance, the child should be translated by a further 25px, for a total of 50px, even though its font-size is 100px. An implementation that incorrectly inherited 1em without converting it to an absolute length first would translate by 125px.</li>
</ul>
</td>
</tr>
<tr id="transform-inherit-002-7" class="primary">
<td><strong>
<a href="transform-inherit-002.htm">transform-inherit-002</a></strong></td>
<td><a href="reference/transform-inherit-ref.htm">=</a> </td>
<td></td>
<td>'inherit' and percentages
<ul class="assert">
<li>The 'transform' property's computed value (which is what's inherited if 'inherit' is specified) is defined as "As specified, but with relative lengths converted into absolute lengths." In this test, a parent element has a transform of 10% with a height/width of 400px, and the child has "transform: inherit" and a height/width of 100px. Since percentages are not relative lengths and are inherited as specified, the parent should be translated by 40px and then the child by only 10px, for a total of 50px. An implementation that incorrectly converted the parent's 10% transform into 40px before inheritance would translate the child by a further 40px, for a total of 80px.</li>
</ul>
</td>
</tr>
<tr id="transform-inline-001-7" class="primary">
<td><strong>
<a href="transform-inline-001.htm">transform-inline-001</a></strong></td>
<td><a href="reference/transform-inline-ref.htm">=</a> <a href="reference/transform-inline-notref.htm">≠</a> </td>
<td></td>
<td>Transformed Inline
<ul class="assert">
<li>The definition of "transformable element" includes atomic inline-level elements, such as images, but not regular inline-level elements, such as spans. The 'transform' property only applies to transformable elements, so it should have no effect on a span.</li>
</ul>
</td>
</tr>
<tr id="transform-input-001-7" class="primary">
<td><strong>
<a href="transform-input-001.htm">transform-input-001</a></strong></td>
<td><a href="reference/transform-input-001-ref.htm">=</a> </td>
<td></td>
<td>Input (type=text)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-002-7" class="primary">
<td><strong>
<a href="transform-input-002.htm">transform-input-002</a></strong></td>
<td><a href="reference/transform-input-002-ref.htm">=</a> </td>
<td></td>
<td>Input (type=file)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-003-7" class="primary">
<td><strong>
<a href="transform-input-003.htm">transform-input-003</a></strong></td>
<td><a href="reference/transform-input-003-ref.htm">=</a> </td>
<td></td>
<td>Input (type=search)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-004-7" class="primary">
<td><strong>
<a href="transform-input-004.htm">transform-input-004</a></strong></td>
<td><a href="reference/transform-input-004-ref.htm">=</a> </td>
<td></td>
<td>Input (type=tel)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-005-7" class="primary">
<td><strong>
<a href="transform-input-005.htm">transform-input-005</a></strong></td>
<td><a href="reference/transform-input-005-ref.htm">=</a> </td>
<td></td>
<td>Input (type=url)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-006-7" class="primary">
<td><strong>
<a href="transform-input-006.htm">transform-input-006</a></strong></td>
<td><a href="reference/transform-input-006-ref.htm">=</a> </td>
<td></td>
<td>Input (type=email)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-007-7" class="primary">
<td><strong>
<a href="transform-input-007.htm">transform-input-007</a></strong></td>
<td><a href="reference/transform-input-007-ref.htm">=</a> </td>
<td></td>
<td>Input (type=password)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-008-7" class="primary">
<td><strong>
<a href="transform-input-008.htm">transform-input-008</a></strong></td>
<td><a href="reference/transform-input-008-ref.htm">=</a> </td>
<td></td>
<td>Input (type=datetime)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-009-7" class="primary">
<td><strong>
<a href="transform-input-009.htm">transform-input-009</a></strong></td>
<td><a href="reference/transform-input-009-ref.htm">=</a> </td>
<td></td>
<td>Input (type=date)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-010-7" class="primary">
<td><strong>
<a href="transform-input-010.htm">transform-input-010</a></strong></td>
<td><a href="reference/transform-input-010-ref.htm">=</a> </td>
<td></td>
<td>Input (type=month)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-011-7" class="primary">
<td><strong>
<a href="transform-input-011.htm">transform-input-011</a></strong></td>
<td><a href="reference/transform-input-011-ref.htm">=</a> </td>
<td></td>
<td>Input (type=week)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-012-7" class="primary">
<td><strong>
<a href="transform-input-012.htm">transform-input-012</a></strong></td>
<td><a href="reference/transform-input-012-ref.htm">=</a> </td>
<td></td>
<td>Input (type=time)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-013-7" class="primary">
<td><strong>
<a href="transform-input-013.htm">transform-input-013</a></strong></td>
<td><a href="reference/transform-input-013-ref.htm">=</a> </td>
<td></td>
<td>Input (type=datetime-local)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-014-7" class="primary">
<td><strong>
<a href="transform-input-014.htm">transform-input-014</a></strong></td>
<td><a href="reference/transform-input-014-ref.htm">=</a> </td>
<td></td>
<td>Input (type=number)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-015-7" class="primary">
<td><strong>
<a href="transform-input-015.htm">transform-input-015</a></strong></td>
<td><a href="reference/transform-input-015-ref.htm">=</a> </td>
<td></td>
<td>Input (type=range)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-016-7" class="primary">
<td><strong>
<a href="transform-input-016.htm">transform-input-016</a></strong></td>
<td><a href="reference/transform-input-016-ref.htm">=</a> </td>
<td></td>
<td>Input (type=color)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-017-7" class="primary">
<td><strong>
<a href="transform-input-017.htm">transform-input-017</a></strong></td>
<td><a href="reference/transform-input-017-ref.htm">=</a> </td>
<td></td>
<td>Input (type=checkbox)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-018-7" class="primary">
<td><strong>
<a href="transform-input-018.htm">transform-input-018</a></strong></td>
<td><a href="reference/transform-input-018-ref.htm">=</a> </td>
<td></td>
<td>Input (type=radio)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-input-019-7" class="primary">
<td><strong>
<a href="transform-input-019.htm">transform-input-019</a></strong></td>
<td><a href="reference/transform-input-019-ref.htm">=</a> </td>
<td></td>
<td>Input (type=submit)
<ul class="assert">
<li>The input element is an atomic inline element, so it falls under the definition of transformable and should be affected by transformations as usual. This is one in a series of tests that verify that a few simple transforms have the expected effect on various types of inputs. (They only test a few very specific transforms because it would be difficult to construct a correct reference file for more complex transforms.)</li>
</ul>
</td>
</tr>
<tr id="transform-percent-001-7" class="primary">
<td><strong>
<a href="transform-percent-001.htm">transform-percent-001</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translateX)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-002-7" class="primary">
<td><strong>
<a href="transform-percent-002.htm">transform-percent-002</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translateY)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-003-7" class="primary">
<td><strong>
<a href="transform-percent-003.htm">transform-percent-003</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translate)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-004-7" class="primary">
<td><strong>
<a href="transform-percent-004.htm">transform-percent-004</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translateX and translateY)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-005-7" class="primary">
<td><strong>
<a href="transform-percent-005.htm">transform-percent-005</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translateX and translateY and translate)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-006-7" class="primary">
<td><strong>
<a href="transform-percent-006.htm">transform-percent-006</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translateX and translate)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-007-7" class="primary">
<td><strong>
<a href="transform-percent-007.htm">transform-percent-007</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (translateY and translate)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box.</li>
</ul>
</td>
</tr>
<tr id="transform-percent-008-7" class="primary">
<td><strong>
<a href="transform-percent-008.htm">transform-percent-008</a></strong></td>
<td><a href="reference/transform-percent-ref.htm">=</a> <a href="reference/transform-percent-notref.htm">≠</a> </td>
<td></td>
<td>Percentages (border box)
<ul class="assert">
<li>This is part of a series of tests that check that percentages in 'transform' values are evaluated relative to the transformed element's border box. This test adds a thicker border plus margin and padding to make any discrepancies more evident.</li>
</ul>
</td>
</tr>
<tr id="transform-propagate-inherit-boolean-001-7" class="primary">
<td><strong>
<a href="transform-propagate-inherit-boolean-001.htm">transform-propagate-inherit-boolean-001</a></strong></td>
<td><a href="reference/transform-propagate-inherit-boolean-ref.htm">=</a> </td>
<td></td>
<td>em on Multiple Elements
<ul class="assert">
<li>This tests that when a 'transform' rule using em affects two elements with different font-sizes, it affects each according to its respective font-size, rather than using the same length for both. See: https://bugzilla.mozilla.org/show_bug.cgi?id=460440</li>
</ul>
</td>
</tr>
<tr id="transform-rounding-001-7" class="primary">
<td><strong>
<a href="transform-rounding-001.htm">transform-rounding-001</a></strong></td>
<td><a href="reference/transform-rounding-ref.htm">=</a> </td>
<td></td>
<td>Rounding
<ul class="assert">
<li>This tests that the implementation does not round intermediate matrices to the extent that it significantly distorts the final result. (No requirement in the specification places any specific constraints on rounding, but simple cases like this should not deviate dramatically from the mathematically precise result.)</li>
</ul>
</td>
</tr>
<tr id="transform-scale-test-7" class="primary">
<td><strong>
<a href="transform-scale-test.htm">transform-scale-test</a></strong></td>
<td><a href="reference/transform-scale-test-ref.htm">=</a> </td>
<td></td>
<td>transform property with scale function.
<ul class="assert">
<li>This transform shrinks a container by calling scale(.33). It also sets transform-origin to top left in order to visually align with the second green square.</li>
</ul>
</td>
</tr>
<tr id="transform-table-001-7" class="primary">
<td><strong>
<a href="transform-table-001.htm">transform-table-001</a></strong></td>
<td><a href="reference/transform-table-001-ref.htm">=</a> <a href="reference/transform-table-001-notref.htm">≠</a> </td>
<td></td>
<td>Transform on Table
<ul class="assert">
<li>This tests that an appropriately-crafted transform applied to a table works the same as if was applied to a wrapper div.</li>
</ul>
</td>
</tr>
<tr id="transform-table-002-7" class="primary">
<td><strong>
<a href="transform-table-002.htm">transform-table-002</a></strong></td>
<td><a href="reference/transform-table-001-ref.htm">=</a> <a href="reference/transform-table-002-notref.htm">≠</a> </td>
<td></td>
<td>Transform on Inline-Table
<ul class="assert">
<li>This tests that an appropriately-crafted transform applied to an inline-table works the same as if was applied to a wrapper div.</li>
</ul>
</td>
</tr>
<tr id="transform-table-003-7" class="primary">
<td><strong>
<a href="transform-table-003.htm">transform-table-003</a></strong></td>
<td><a href="reference/transform-table-001-ref.htm">=</a> <a href="reference/transform-table-001-notref.htm">≠</a> </td>
<td></td>
<td>Transform on Table 2
<ul class="assert">
<li>This tests that another appropriately-crafted transform applied to a table works the same as if was applied to a wrapper div.</li>
</ul>
</td>
</tr>
<tr id="transform-table-004-7" class="primary">
<td><strong>
<a href="transform-table-004.htm">transform-table-004</a></strong></td>
<td><a href="reference/transform-table-004-ref.htm">=</a> <a href="reference/transform-table-004-notref.htm">≠</a> </td>
<td></td>
<td>Transform on Table with caption-side: bottom
<ul class="assert">
<li>This is the same as transform-table-001.html, except the caption has caption-side: bottom.</li>
</ul>
</td>
</tr>
<tr id="transform-table-005-7" class="primary">
<td><strong>
<a href="transform-table-005.htm">transform-table-005</a></strong></td>
<td><a href="reference/transform-table-004-ref.htm">=</a> <a href="reference/transform-table-005-notref.htm">≠</a> </td>
<td></td>
<td>Transform on Table with caption-side: bottom
<ul class="assert">
<li>This is the same as transform-table-002.html, except the caption has caption-side: bottom.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-inline-block-7" class="primary">
<td><strong>
<a href="transform-transformable-inline-block.htm">transform-transformable-inline-block</a></strong></td>
<td><a href="reference/transform-transformable-inline-block-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Inline-Block
<ul class="assert">
<li>This tests that transforms specified on an inline-block work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-inline-table-7" class="primary">
<td><strong>
<a href="transform-transformable-inline-table.htm">transform-transformable-inline-table</a></strong></td>
<td><a href="reference/transform-transformable-inline-table-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Inline-Table
<ul class="assert">
<li>This tests that transforms specified on an inline-table work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-list-item-7" class="primary">
<td><strong>
<a href="transform-transformable-list-item.htm">transform-transformable-list-item</a></strong></td>
<td><a href="reference/transform-transformable-list-item-ref.htm">=</a> </td>
<td></td>
<td>Transformability of List-Item
<ul class="assert">
<li>This tests that transforms specified on a list-item work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-7" class="primary">
<td><strong>
<a href="transform-transformable-table.htm">transform-transformable-table</a></strong></td>
<td><a href="reference/transform-transformable-table-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table
<ul class="assert">
<li>This tests that transforms specified on a table work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-caption-7" class="primary">
<td><strong>
<a href="transform-transformable-table-caption.htm">transform-transformable-table-caption</a></strong></td>
<td><a href="reference/transform-transformable-table-caption-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table-Caption
<ul class="assert">
<li>This tests that transforms specified on a table-caption work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-cell-7" class="primary">
<td><strong>
<a href="transform-transformable-table-cell.htm">transform-transformable-table-cell</a></strong></td>
<td><a href="reference/transform-transformable-table-cell-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table-Cell
<ul class="assert">
<li>This tests that transforms specified on a table-cell work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-footer-group-7" class="primary">
<td><strong>
<a href="transform-transformable-table-footer-group.htm">transform-transformable-table-footer-group</a></strong></td>
<td><a href="reference/transform-transformable-table-footer-group-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table-Footer-Group
<ul class="assert">
<li>This tests that transforms specified on a table-footer-group work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-header-group-7" class="primary">
<td><strong>
<a href="transform-transformable-table-header-group.htm">transform-transformable-table-header-group</a></strong></td>
<td><a href="reference/transform-transformable-table-header-group-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table-Header-Group
<ul class="assert">
<li>This tests that transforms specified on a table-header-group work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-row-7" class="primary">
<td><strong>
<a href="transform-transformable-table-row.htm">transform-transformable-table-row</a></strong></td>
<td><a href="reference/transform-transformable-table-row-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table-Row
<ul class="assert">
<li>This tests that transforms specified on a table-row work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-transformable-table-row-group-7" class="primary">
<td><strong>
<a href="transform-transformable-table-row-group.htm">transform-transformable-table-row-group</a></strong></td>
<td><a href="reference/transform-transformable-table-row-group-ref.htm">=</a> </td>
<td></td>
<td>Transformability of Table-Row-Group
<ul class="assert">
<li>This tests that transforms specified on a table-row-group work as expected.</li>
</ul>
</td>
</tr>
<tr id="transform-translatex-006-7" class="primary">
<td><strong>
<a href="transform-translatex-006.htm">transform-translatex-006</a></strong></td>
<td><a href="reference/transform-translatex-ref.htm">=</a> </td>
<td></td>
<td>transform property with translateX function
<ul class="assert">
<li>This tests that translateX(50px) translates a box by 50 pixels in the X direction.</li>
</ul>
</td>
</tr>
<tr id="transform_translate-7" class="primary dom script">
<td><strong>
<a href="transform_translate.htm">transform_translate</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate
<ul class="assert">
<li>Check if transform supports translate(100px, 100px)</li>
</ul>
</td>
</tr>
<tr id="transform_translate_invalid-7" class="primary dom script">
<td><strong>
<a href="transform_translate_invalid.htm">transform_translate_invalid</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate with invalid translation value
<ul class="assert">
<li>Check if transform sets translate(null, null), transform property returns initial value.</li>
</ul>
</td>
</tr>
<tr id="transform_translate_max-7" class="primary dom script">
<td><strong>
<a href="transform_translate_max.htm">transform_translate_max</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate with maximum translation value
<ul class="assert">
<li>Check if transform sets translate(INFINITE, INFINITE), transform property returns initial value.</li>
</ul>
</td>
</tr>
<tr id="transform_translate_min-7" class="primary dom script">
<td><strong>
<a href="transform_translate_min.htm">transform_translate_min</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate with minimum translation value
<ul class="assert">
<li>Check if transform sets translate(-INFINITE, -INFINITE), transform property returns initial value.</li>
</ul>
</td>
</tr>
<tr id="transform_translate_neg-7" class="primary dom script">
<td><strong>
<a href="transform_translate_neg.htm">transform_translate_neg</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate with negative translation value
<ul class="assert">
<li>Check if transform supports translate(-1px, -1px)</li>
</ul>
</td>
</tr>
<tr id="transform_translate_second_omited-7" class="primary dom script">
<td><strong>
<a href="transform_translate_second_omited.htm">transform_translate_second_omited</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate with second translation value omited
<ul class="assert">
<li>Check if transform supports translate(100px)</li>
</ul>
</td>
</tr>
<tr id="transform_translate_zero-7" class="primary dom script">
<td><strong>
<a href="transform_translate_zero.htm">transform_translate_zero</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>transform translate
<ul class="assert">
<li>Check if transform supports translate(0, 0)</li>
</ul>
</td>
</tr>
<tr id="transforms-rotate-degree-90-7" class="primary">
<td><strong>
<a href="transforms-rotate-degree-90.htm">transforms-rotate-degree-90</a></strong></td>
<td><a href="reference/transforms-rotate-degree-90-ref.htm">=</a> </td>
<td></td>
<td>transform property with rotate function and one parameter
<ul class="assert">
<li>If the rotate with parameter not provided, greenRectangle will not cover redRectangle.</li>
</ul>
</td>
</tr>
<tr id="transforms-rotate-translate-scale-7" class="primary">
<td><strong>
<a href="transforms-rotate-translate-scale.htm">transforms-rotate-translate-scale</a></strong></td>
<td><a href="reference/transforms-rotate-translate-scale-ref.htm">=</a> </td>
<td></td>
<td>transform property with scale function and rotate function with one parameter
<ul class="assert">
<li>If the rotate and scale with parameter not provided, greenSquare will not cover redSquare.</li>
</ul>
</td>
</tr>
<tr id="transforms-rotatey-degree-60-7" class="primary">
<td><strong>
<a href="transforms-rotateY-degree-60.htm">transforms-rotatey-degree-60</a></strong></td>
<td><a href="reference/transforms-rotateY-degree-60-ref.htm">=</a> </td>
<td></td>
<td>transform property with rotate function and one parameter
</td>
</tr>
<tr id="transforms-skewx-7" class="primary">
<td><strong>
<a href="transforms-skewX.htm">transforms-skewx</a></strong></td>
<td><a href="reference/transforms-skewX-ref.htm">=</a> </td>
<td></td>
<td>transform property with skew function for X axis.
<ul class="assert">
<li>If the skew for X axis not provided, greenSquare will not cover redSquare.</li>
</ul>
</td>
</tr>
<tr id="transforms-skewy-7" class="primary">
<td><strong>
<a href="transforms-skewY.htm">transforms-skewy</a></strong></td>
<td><a href="reference/transforms-skewY-ref.htm">=</a> </td>
<td></td>
<td>transform property with skew function for Y axis.
<ul class="assert">
<li>If the skew for Y axis not provided, greenSquare will not cover redSquare.</li>
</ul>
</td>
</tr>
<tr id="translate-optional-second-001-7" class="primary">
<td><strong>
<a href="translate-optional-second-001.htm">translate-optional-second-001</a></strong></td>
<td><a href="reference/translate-optional-second-ref.htm">=</a> </td>
<td></td>
<td>transform property with translate function and one parameter
<ul class="assert">
<li>If the second parameter is not provided, it has zero as a value. This transform moves the element by 100 pixels in X direction.</li>
</ul>
</td>
</tr>
<tr id="transofrmed-preserve-3d-1-7" class="primary">
<td><strong>
<a href="transofrmed-preserve-3d-1.htm">transofrmed-preserve-3d-1</a></strong></td>
<td><a href="reference/transofrmed-preserve-3d-1-ref.htm">=</a> </td>
<td></td>
<td>transform preserve-3d
<ul class="assert">
<li>The transformed div should establishe a 3D rendering context</li>
</ul>
</td>
</tr>
<tr id="transofrmed-rotatex-3-7" class="primary">
<td><strong>
<a href="transofrmed-rotateX-3.htm">transofrmed-rotatex-3</a></strong></td>
<td><a href="reference/transofrmed-rotateX-3-ref.htm">=</a> </td>
<td></td>
<td>transform rotateX
<ul class="assert">
<li>The transformed div should rotateX by 180 degrees</li>
</ul>
</td>
</tr>
<tr id="transofrmed-rotatey-1-7" class="primary">
<td><strong>
<a href="transofrmed-rotateY-1.htm">transofrmed-rotatey-1</a></strong></td>
<td><a href="reference/transofrmed-rotateY-1-ref.htm">=</a> </td>
<td></td>
<td>transform rotateY
<ul class="assert">
<li>The transformed div should rotate 90 degrees</li>
</ul>
</td>
</tr>
<tr id="ttwf-reftest-rotate-7" class="primary">
<td><strong>
<a href="ttwf-reftest-rotate.htm">ttwf-reftest-rotate</a></strong></td>
<td><a href="reference/ttwf-reftest-rotate-ref.htm">=</a> </td>
<td></td>
<td>transform rotate
<ul class="assert">
<li>The transform should rotate 180 degrees</li>
</ul>
</td>
</tr>
<tr id="ttwf-transform-skewx-001-7" class="primary">
<td><strong>
<a href="ttwf-transform-skewx-001.htm">ttwf-transform-skewx-001</a></strong></td>
<td><a href="reference/ttwf-reftest-transform-skewx-001.htm">=</a> </td>
<td></td>
<td>CSS Transform Using skewX() function
<ul class="assert">
<li>Test that the green shape is skew on X axis by 45 degrees</li>
</ul>
</td>
</tr>
<tr id="ttwf-transform-skewy-001-7" class="primary">
<td><strong>
<a href="ttwf-transform-skewy-001.htm">ttwf-transform-skewy-001</a></strong></td>
<td><a href="reference/ttwf-reftest-transform-skewy-001.htm">=</a> </td>
<td></td>
<td>CSS Transform Using skewY() function
<ul class="assert">
<li>Test that the green shape is skew on Y axis by 45 degrees</li>
</ul>
</td>
</tr>
<tr id="ttwf-transform-translatex-001-7" class="primary">
<td><strong>
<a href="ttwf-transform-translatex-001.htm">ttwf-transform-translatex-001</a></strong></td>
<td><a href="reference/ttwf-reftest-transform-translatex-001.htm">=</a> </td>
<td></td>
<td>CSS Transform Using translateX() function
<ul class="assert">
<li>Test that the green square is moved on X axis 100px</li>
</ul>
</td>
</tr>
<tr id="ttwf-transform-translatey-001-7" class="primary">
<td><strong>
<a href="ttwf-transform-translatey-001.htm">ttwf-transform-translatey-001</a></strong></td>
<td><a href="reference/ttwf-reftest-transform-translatey-001.htm">=</a> </td>
<td></td>
<td>CSS Transform Using translateY() function
<ul class="assert">
<li>Test that the green square is moved on Y axis 100px</li>
</ul>
</td>
</tr>
</tbody>
<tbody id="s7.#propdef-transform">
<!-- 1 tests -->
<tr id="css-transform-property-existence-7.#propdef-transform" class="primary dom script">
<td><strong>
<a href="css-transform-property-existence.htm">css-transform-property-existence</a></strong></td>
<td></td>
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>property existence
</td>
</tr>
</tbody>
<tbody id="s7.#typedef-transform-list">
<!-- 0 tests -->
</tbody>
</table>
</body>
</html>
|