diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/js')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/js/console-non-string-values-expected.txt | 7 | ||||
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/js/console-non-string-values.html | 18 |
2 files changed, 25 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/js/console-non-string-values-expected.txt b/third_party/WebKit/LayoutTests/fast/js/console-non-string-values-expected.txt new file mode 100644 index 0000000..ffd0fe8 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/js/console-non-string-values-expected.txt @@ -0,0 +1,7 @@ +CONSOLE MESSAGE: line 0: I am a string +CONSOLE MESSAGE: line 0: 42 +Should see two console messages, the first a string, and the second a number. +PASS successfullyParsed is true + +TEST COMPLETE + diff --git a/third_party/WebKit/LayoutTests/fast/js/console-non-string-values.html b/third_party/WebKit/LayoutTests/fast/js/console-non-string-values.html new file mode 100644 index 0000000..b11861f --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/js/console-non-string-values.html @@ -0,0 +1,18 @@ +<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> +<html> +<head> +<link rel="stylesheet" href="resources/js-test-style.css"> +<script src="resources/js-test-pre.js"></script> +</head> +<body> +<p id="description"></p> +<div id="console"></div> +<script> +debug('Should see two console messages, the first a string, and the second a number.'); +window.console.log('I am a string'); +window.console.log(42); +var successfullyParsed = true; +</script> +<script src="resources/js-test-post.js"></script> +</body> +</html> |