Chromium Code Reviews| 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..e8a9756df113f66c26d76a04c0cf50c117071ca0 |
| --- /dev/null |
| +++ b/tools/perf/page_sets/tough_scheduling_cases/simple_pepper_plugin.html |
| @@ -0,0 +1,39 @@ |
| +<!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()"> |
| + <div id="listener"> |
| + <script type="text/javascript"> |
| + var listener = document.getElementById('listener'); |
| + listener.addEventListener('load', moduleDidLoad, true); |
|
Rick Byers
2014/05/29 03:28:09
you could put the load handler directly on touch_d
Yufeng Shen (Slow to review)
2014/05/29 18:29:20
Done.
|
| + </script> |
| + |
| + <embed id="touch_drawing_plugin" |
| + width="640" height="640" |
| + src="extra_data/touch_drawing_plugin.nmf" |
| + type="application/x-pnacl" /> |
| + </div> |
| +</body> |
| +</html> |