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

Unified Diff: LayoutTests/fast/dom/characterdata-api-arguments-expected.txt

Issue 21542002: Make CharacterData::insertData() / deleteData() / replaceData() arguments mandatory (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline fast/dom/characterdata-appendData-argument.html Created 7 years, 5 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
Index: LayoutTests/fast/dom/characterdata-api-arguments-expected.txt
diff --git a/LayoutTests/fast/dom/characterdata-api-arguments-expected.txt b/LayoutTests/fast/dom/characterdata-api-arguments-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..70bac5e07d444aa808d2179b01d9120adf1496cd
--- /dev/null
+++ b/LayoutTests/fast/dom/characterdata-api-arguments-expected.txt
@@ -0,0 +1,51 @@
+Tests that the CharacterData API arguments are correctly validated.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS text.data is "abcd"
+PASS text.__proto__.__proto__ is CharacterData.prototype
+PASS text.appendData('efg') did not throw exception.
+PASS text.data is "abcdefg"
+PASS text.appendData() threw exception TypeError: Not enough arguments.
+PASS text.data is "abcdefg"
+PASS text.insertData(0, 'abcd') did not throw exception.
+PASS text.data is "abcdefg"
+PASS text.insertData() threw exception TypeError: Not enough arguments.
+PASS text.data is "abcdefg"
+PASS text.insertData(0) threw exception TypeError: Not enough arguments.
+PASS text.data is "abcdefg"
+PASS text.insertData(999, 'test') threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
+PASS text.data is "abcdefg"
+PASS text.insertData(-4294967294, 'test') did not throw exception.
+PASS text.data is "abtestcdefg"
+PASS text.deleteData(4, 3) did not throw exception.
+PASS text.data is "abcd"
+PASS text.deleteData() threw exception TypeError: Not enough arguments.
+PASS text.data is "abcd"
+PASS text.deleteData(0) threw exception TypeError: Not enough arguments.
+PASS text.data is "abcd"
+PASS text.deleteData(999, 3) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
+PASS text.data is "abcd"
+PASS text.deleteData(-4294967294, 2) did not throw exception.
+PASS text.data is "ab"
+PASS text.deleteData(1, 999) did not throw exception.
+PASS text.data is "a"
+PASS text.replaceData(0, 0, 'abcd') did not throw exception.
+PASS text.data is "abcdefg"
+PASS text.replaceData() threw exception TypeError: Not enough arguments.
+PASS text.data is "abcdefg"
+PASS text.replaceData(0) threw exception TypeError: Not enough arguments.
+PASS text.data is "abcdefg"
+PASS text.replaceData(0, 0) threw exception TypeError: Not enough arguments.
+PASS text.data is "abcdefg"
+PASS text.replaceData(999, 3, 'test') threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
+PASS text.data is "abcdefg"
+PASS text.replaceData(-4294967294, 0, 'test') did not throw exception.
+PASS text.data is "abtestcdefg"
+PASS text.replaceData(1, 999, 'aaa') did not throw exception.
+PASS text.data is "aaaa"
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « LayoutTests/fast/dom/characterdata-api-arguments.html ('k') | LayoutTests/fast/dom/characterdata-appendData-argument.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698