Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(752)

Side by Side Diff: LayoutTests/fast/js/webidl-type-mapping.html

Issue 309553002: Add ByteString support to IDL bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add [Default=NullString] support Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/js/webidl-type-mapping-expected.txt » ('j') | Source/bindings/v8/V8Binding.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698