| Index: content/browser/browser_plugin/browser_plugin_host_browsertest.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
|
| index e1d948359251e0cdc2816827950fc2ff6857141a..f9d60bae2109873493bd089f7559bc995a2d509a 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
|
| @@ -49,20 +49,6 @@ namespace {
|
|
|
| const char kHTMLForGuest[] =
|
| "data:text/html,<html><body>hello world</body></html>";
|
| -const char kHTMLForGuestBusyLoop[] =
|
| - "data:text/html,<html><head><script type=\"text/javascript\">"
|
| - "function PauseMs(timems) {"
|
| - " document.title = \"start\";"
|
| - " var date = new Date();"
|
| - " var currDate = null;"
|
| - " do {"
|
| - " currDate = new Date();"
|
| - " } while (currDate - date < timems)"
|
| - "}"
|
| - "function StartPauseMs(timems) {"
|
| - " setTimeout(function() { PauseMs(timems); }, 0);"
|
| - "}"
|
| - "</script></head><body></body></html>";
|
| const char kHTMLForGuestTouchHandler[] =
|
| "data:text/html,<html><body><div id=\"touch\">With touch</div></body>"
|
| "<script type=\"text/javascript\">"
|
|
|