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: tools/chrome_remote_control/unittest_data/page_that_logs_to_console.html

Issue 10916227: More polish in prep for CrOS support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for landing Created 8 years, 3 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 | « tools/chrome_remote_control/unittest_data/blank.html ('k') | tools/gpu/gpu_tools/file_server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/chrome_remote_control/unittest_data/page_that_logs_to_console.html
diff --git a/tools/chrome_remote_control/unittest_data/page_that_logs_to_console.html b/tools/chrome_remote_control/unittest_data/page_that_logs_to_console.html
new file mode 100644
index 0000000000000000000000000000000000000000..373eebc60a831e88e563b2461a7f6119daf08c05
--- /dev/null
+++ b/tools/chrome_remote_control/unittest_data/page_that_logs_to_console.html
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+</head>
+<body>
+<script>
+ window.__logCount = 0;
+ setInterval(function() {
+ console.log("Hello, world")
+ window.__logCount += 1
+ }, 100);
+</script>
+</body>
+</html>
« no previous file with comments | « tools/chrome_remote_control/unittest_data/blank.html ('k') | tools/gpu/gpu_tools/file_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698