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

Unified Diff: LayoutTests/fast/dom/script-tests/dataset.js

Issue 163883006: Add context to generated named and indexed property operations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ugh. Created 6 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 | « LayoutTests/fast/dom/dataset-xhtml-expected.txt ('k') | LayoutTests/fast/dom/script-tests/dataset-xhtml.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/script-tests/dataset.js
diff --git a/LayoutTests/fast/dom/script-tests/dataset.js b/LayoutTests/fast/dom/script-tests/dataset.js
index bf7b305b85458fb5b66c38deda4516ff62469ea1..6b8281fb4984044172dbdbd10dae86dfba05e131 100644
--- a/LayoutTests/fast/dom/script-tests/dataset.js
+++ b/LayoutTests/fast/dom/script-tests/dataset.js
@@ -89,8 +89,8 @@ shouldBeTrue("testIsNull('123', 'data-0123')");
debug("");
shouldThrow("testSet('-foo', 'dummy')", '"SyntaxError: Failed to set the \'-foo\' property on \'DOMStringMap\': \'-foo\' is not a valid property name."');
-shouldThrow("testSet('foo\x20', 'dummy')", '"InvalidCharacterError: \'data-foo\x20\' is not a valid attribute name."');
-shouldThrow("testSet('foo\uF900', 'dummy')", '"InvalidCharacterError: \'data-foo\uF900\' is not a valid attribute name."');
+shouldThrow("testSet('foo\x20', 'dummy')", '"InvalidCharacterError: Failed to set the \'foo\x20\' property on \'DOMStringMap\': \'data-foo\x20\' is not a valid attribute name."');
+shouldThrow("testSet('foo\uF900', 'dummy')", '"InvalidCharacterError: Failed to set the \'foo\uF900\' property on \'DOMStringMap\': \'data-foo\uF900\' is not a valid attribute name."');
debug("");
function testDelete(attr, prop)
« no previous file with comments | « LayoutTests/fast/dom/dataset-xhtml-expected.txt ('k') | LayoutTests/fast/dom/script-tests/dataset-xhtml.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698