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

Unified Diff: LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html

Issue 100433004: Sync Document.createProcessingInstruction() with spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: test createProcessingInstruction for HTML doc Created 7 years 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/Document/createProcessingInstruction-invalid-data.html
diff --git a/LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html b/LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html
new file mode 100644
index 0000000000000000000000000000000000000000..04eea69e3d6a17f321704d8eb02d20eb56e0ac65
--- /dev/null
+++ b/LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<html>
+<head>
+<script src="../../../resources/js-test.js"></script>
+</head>
+<body>
+<script>
+['?>', 'foo?>bar'].forEach(function(data)
+{
+ shouldThrow("document.createProcessingInstruction('name', '" + data + "')");
+});
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698