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

Unified Diff: LayoutTests/fast/dom/private_script_unittest-expected.txt

Issue 360703003: Implement Blink-in-JS for DOM methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/private_script_unittest.html ('k') | Source/bindings/IDLExtendedAttributes.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/private_script_unittest-expected.txt
diff --git a/LayoutTests/fast/dom/private_script_unittest-expected.txt b/LayoutTests/fast/dom/private_script_unittest-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0ca6b287e954c0a629594d6ae69b949b812d8cd6
--- /dev/null
+++ b/LayoutTests/fast/dom/private_script_unittest-expected.txt
@@ -0,0 +1,28 @@
+Unittests for private scripts.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+This test needs window.internals.
+PASS internals.return123() is 123
+PASS internals.echoInteger(111) is 111
+PASS internals.echoString("foo") is "foo"
+PASS internals.addInteger(111, 222) is 333
+PASS internals.addString("foo", "bar") is "foobar"
+PASS internals.getIntegerFromPrototype() is 0
+PASS internals.getIntegerFromPrototype() is 123
+PASS internals.getIntegerFromDocument(document) is 0
+PASS internals.getIntegerFromDocument(document) is 123
+PASS internals.firstChild(node1) is node2
+PASS internals.nextSibling(node2) is node3
+PASS internals.nextSibling(node3) is node4
+PASS internals.nextSibling(node4) is null
+PASS internals.innerHTML(node5) is ""
+PASS internals.innerHTML(node5) is "<div>foo</div>"
+PASS internals.innerHTML(node6) is "foo"
+PASS internals.innerHTML(node7) is ""
+PASS internals.innerHTML(node7) is "clicked"
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « LayoutTests/fast/dom/private_script_unittest.html ('k') | Source/bindings/IDLExtendedAttributes.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698