OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../../fast/js/resources/js-test-pre.js"></script> |
4 <script src="resources/scripted-random.js"></script> | 4 <script src="resources/scripted-random.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description"></p> | 7 <p id="description"></p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 <script> | 9 <script> |
10 description("This test fuzzes the transform parser with semi-random attribut
e values and dumps the results of any values that parse successfully."); | 10 description("This test fuzzes the transform parser with semi-random attribut
e values and dumps the results of any values that parse successfully."); |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // Empty-ish transforms | 87 // Empty-ish transforms |
88 parseTransform(transform); | 88 parseTransform(transform); |
89 parseTransform(transform + String.fromCharCode(0)); | 89 parseTransform(transform + String.fromCharCode(0)); |
90 parseTransform(transform + "(" + String.fromCharCode(0) + ")"); | 90 parseTransform(transform + "(" + String.fromCharCode(0) + ")"); |
91 } | 91 } |
92 } | 92 } |
93 | 93 |
94 fuzz(); | 94 fuzz(); |
95 | 95 |
96 </script> | 96 </script> |
97 <script src="../../fast/js/resources/js-test-post.js"></script> | |
98 </html> | 97 </html> |
OLD | NEW |