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

Unified Diff: third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping.html

Issue 1711783003: Remove support for TreatReturnedNullStringAs=Null|Undefined (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping.html
diff --git a/third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping.html b/third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping.html
index eaad0ff1653f7627429174c8e3a0f8259079610e..68956e2f03344a5cd4257de8285349dcd8f190ac 100644
--- a/third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping.html
+++ b/third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping.html
@@ -589,10 +589,6 @@ shouldBeEqualToString("converter.testByteString", "!@#123ABCabc\x00\x80\xFF\r\n\
["true", "123", "null", "undefined"].forEach(function(value) {
evalAndLog("converter.testByteString = " + value);
shouldBeEqualToString("converter.testByteString", value);
- shouldBeEqualToString("converter.testByteStringTreatReturnedNullStringAsNullAttribute", value);
- shouldBeEqualToString("converter.testByteStringTreatReturnedNullStringAsUndefinedAttribute", value);
- shouldBeEqualToString("converter.getTestByteStringTreatReturnedNullStringAsNullMethod()", value);
- shouldBeEqualToString("converter.getTestByteStringTreatReturnedNullStringAsUndefinedMethod()", value);
});
shouldNotThrow("converter.setTestByteString('abc')");
shouldNotThrow("converter.setTestByteStringDefaultNull('abc')");
@@ -601,10 +597,6 @@ shouldThrow("converter.setTestByteStringDefaultNull('\\u0100')");
shouldThrow("converter.setTestByteString()");
shouldNotThrow("converter.setTestByteStringDefaultNull()");
shouldBeEqualToString("converter.testByteString", "");
-shouldBeNull("converter.testByteStringTreatReturnedNullStringAsNullAttribute");
-shouldBeUndefined("converter.testByteStringTreatReturnedNullStringAsUndefinedAttribute");
-shouldBeNull("converter.getTestByteStringTreatReturnedNullStringAsNullMethod()");
-shouldBeUndefined("converter.getTestByteStringTreatReturnedNullStringAsUndefinedMethod()");
evalAndLog("converter.testUSVString = '!@#123ABCabc\\x00\\x80\\xFF\\r\\n\\t'");
shouldBeEqualToString("converter.testUSVString", "!@#123ABCabc\x00\x80\xFF\r\n\t");
@@ -625,10 +617,6 @@ shouldBeEqualToString("converter.testUSVString", "\u0100");
["true", "123", "null", "undefined"].forEach(function(value) {
evalAndLog("converter.testUSVString = " + value);
shouldBeEqualToString("converter.testUSVString", value);
- shouldBeEqualToString("converter.testUSVStringTreatReturnedNullStringAsNullAttribute", value);
- shouldBeEqualToString("converter.testUSVStringTreatReturnedNullStringAsUndefinedAttribute", value);
- shouldBeEqualToString("converter.getTestUSVStringTreatReturnedNullStringAsNullMethod()", value);
- shouldBeEqualToString("converter.getTestUSVStringTreatReturnedNullStringAsUndefinedMethod()", value);
});
shouldNotThrow("converter.setTestUSVString('abc')");
shouldNotThrow("converter.setTestUSVStringDefaultNull('abc')");
@@ -637,9 +625,5 @@ shouldNotThrow("converter.setTestUSVStringDefaultNull('\\u0100')");
shouldThrow("converter.setTestUSVString()");
shouldNotThrow("converter.setTestUSVStringDefaultNull()");
shouldBeEqualToString("converter.testUSVString", "");
-shouldBeNull("converter.testUSVStringTreatReturnedNullStringAsNullAttribute");
-shouldBeUndefined("converter.testUSVStringTreatReturnedNullStringAsUndefinedAttribute");
-shouldBeNull("converter.getTestUSVStringTreatReturnedNullStringAsNullMethod()");
-shouldBeUndefined("converter.getTestUSVStringTreatReturnedNullStringAsUndefinedMethod()");
</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/js/webidl-type-mapping-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698