Index: tools/perf/page_sets/tough_scheduling_cases/simple_pepper_plugin.html |
diff --git a/tools/perf/page_sets/tough_scheduling_cases/simple_pepper_plugin.html b/tools/perf/page_sets/tough_scheduling_cases/simple_pepper_plugin.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..22194b25ee340615f3e41d36086369744fea734b |
--- /dev/null |
+++ b/tools/perf/page_sets/tough_scheduling_cases/simple_pepper_plugin.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<html> |
+ <!-- |
+ Copyright 2014 The Chromium Authors. All rights reserved. |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. |
+ --> |
+<head> |
+ |
+ <title>Simple Touch Drawing Pepper Plugin</title> |
+ |
+ <script type="text/javascript"> |
+ // Telemetry will wait until page and plugin module are loaded to send |
+ // touch events. |
+ var pageLoaded = false; |
+ var moduleLoaded = false; |
+ |
+ function moduleDidLoad() { |
+ moduleLoaded = true; |
+ } |
+ function pageDidLoad() { |
+ pageLoaded = true; |
+ } |
+ </script> |
+</head> |
+<body onload="pageDidLoad()"> |
+ <embed id="touch_drawing_plugin" |
+ width="640" height="640" |
+ src="extra_data/touch_drawing_plugin.nmf" |
+ type="application/x-pnacl" |
+ onload="moduleDidLoad()" /> |
+</body> |
+</html> |