Chromium Code Reviews| Index: LayoutTests/fast/js/webidl-type-mapping.html |
| diff --git a/LayoutTests/fast/js/webidl-type-mapping.html b/LayoutTests/fast/js/webidl-type-mapping.html |
| index 613c1c132853fd52e4b20eac39c867d53b38a725..3d0870f68b6530218cca57d643d535718e6621c0 100644 |
| --- a/LayoutTests/fast/js/webidl-type-mapping.html |
| +++ b/LayoutTests/fast/js/webidl-type-mapping.html |
| @@ -581,4 +581,9 @@ testNonNumericToNumericEnforceRange(type); |
| convertThrows(type, "{valueOf:function(){throw new Error('custom');}}"); |
| debug(""); |
| +evalAndLog("converter.testByteString = '!@#123ABCabc\\x00\\x80\\xFF\\r\\n\\t'"); |
|
jsbell
2014/05/30 19:14:54
I need to add a case that assigns a non-string (e.
|
| +shouldBeEqualToString("converter.testByteString", "!@#123ABCabc\x00\x80\xFF\r\n\t"); |
| +shouldThrow("converter.testByteString = '\\u0100'"); |
| +shouldBeEqualToString("converter.testByteString", "!@#123ABCabc\x00\x80\xFF\r\n\t"); |
| + |
| </script> |