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

Unified Diff: content/test/data/gpu/gpu_process_crash.html

Issue 418733002: Prevent duplicate navigation to debug URLs from Telemetry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Read crash count from Browser System Info instead of scrubbing chrome://gpu page. Created 6 years, 5 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
Index: content/test/data/gpu/gpu_process_crash.html
diff --git a/content/test/data/gpu/gpu_process_crash.html b/content/test/data/gpu/gpu_process_crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..33ced3b7f99064d1da4535ea515673b28c450729
--- /dev/null
+++ b/content/test/data/gpu/gpu_process_crash.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<script type="text/javascript">
+function onLoad() {
+ // This page doesn't need to take any action except
+ // set LOADED & SUCCESSful. Disable the reset() method
+ // so we don't have to do it again.
+ window.domAutomationController.reset = function() {};
+ window.domAutomationController.send("LOADED");
+ window.domAutomationController.send("SUCCESS");
+}
+</script>
+</head>
+<body onload="onLoad()">
+GPU process crash test running.
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698