OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.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 color parser with semi-random attribute va
lues and dumps the results of any values that parse successfully."); | 10 description("This test fuzzes the color parser with semi-random attribute va
lues and dumps the results of any values that parse successfully."); |
11 | 11 |
12 var characters = [ | 12 var characters = [ |
13 "0", | 13 "0", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 parseRGBColor("rgb(" + String.fromCharCode(0) + ")"); | 104 parseRGBColor("rgb(" + String.fromCharCode(0) + ")"); |
105 | 105 |
106 // One more valid value. | 106 // One more valid value. |
107 parseRGBColor("#0f0"); | 107 parseRGBColor("#0f0"); |
108 } | 108 } |
109 | 109 |
110 fuzz(); | 110 fuzz(); |
111 | 111 |
112 </script> | 112 </script> |
113 </html> | 113 </html> |
OLD | NEW |