| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
| 3 <script> | 3 <script> |
| 4 description("Exercise WebIDL type conversions."); | 4 description("Exercise WebIDL type conversions."); |
| 5 | 5 |
| 6 quiet = true; | 6 quiet = true; |
| 7 evalAndLog("converter = window.internals.typeConversions()"); | 7 evalAndLog("converter = window.internals.typeConversions()"); |
| 8 debug(""); | 8 debug(""); |
| 9 | 9 |
| 10 function verifyAttribute(attribute) | 10 function verifyAttribute(attribute) |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 convert(type, "-Number.MIN_VALUE", "0"); | 574 convert(type, "-Number.MIN_VALUE", "0"); |
| 575 convert(type, "1.99", "1"); | 575 convert(type, "1.99", "1"); |
| 576 convertThrows(type, "-1.99"); | 576 convertThrows(type, "-1.99"); |
| 577 convertThrows(type, "Infinity"); | 577 convertThrows(type, "Infinity"); |
| 578 convertThrows(type, "-Infinity"); | 578 convertThrows(type, "-Infinity"); |
| 579 convertThrows(type, "NaN"); | 579 convertThrows(type, "NaN"); |
| 580 testNonNumericToNumericEnforceRange(type); | 580 testNonNumericToNumericEnforceRange(type); |
| 581 convertThrows(type, "{valueOf:function(){throw new Error('custom');}}"); | 581 convertThrows(type, "{valueOf:function(){throw new Error('custom');}}"); |
| 582 debug(""); | 582 debug(""); |
| 583 | 583 |
| 584 evalAndLog("converter.testByteString = '!@#123ABCabc\\x00\\x80\\xFF\\r\\n\\t'"); |
| 585 shouldBeEqualToString("converter.testByteString", "!@#123ABCabc\x00\x80\xFF\r\n\
t"); |
| 586 shouldThrow("converter.testByteString = '\\u0100'"); |
| 587 shouldThrow("converter.testByteString = {toString: function() { throw Error(); }
}"); |
| 588 shouldBeEqualToString("converter.testByteString", "!@#123ABCabc\x00\x80\xFF\r\n\
t"); |
| 589 ["true", "123", "null", "undefined"].forEach(function(value) { |
| 590 evalAndLog("converter.testByteString = " + value); |
| 591 shouldBeEqualToString("converter.testByteString", value); |
| 592 }); |
| 593 shouldNotThrow("converter.setTestByteString('abc')"); |
| 594 shouldNotThrow("converter.setTestByteStringDefaultNull('abc')"); |
| 595 shouldThrow("converter.setTestByteString('\\u0100')"); |
| 596 shouldThrow("converter.setTestByteStringDefaultNull('\\u0100')"); |
| 597 shouldThrow("converter.setTestByteString()"); |
| 598 shouldNotThrow("converter.setTestByteStringDefaultNull()"); |
| 599 shouldBeEqualToString("converter.testByteString", ""); |
| 600 |
| 584 </script> | 601 </script> |
| OLD | NEW |