diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 18:58:55 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 18:58:55 +0000 |
commit | 483a075709bb435ddf380aac050dc3b7a586d244 (patch) | |
tree | 950a196f2d8da8c53072e762dc5793cb99ec0125 /chrome_frame/test/data | |
parent | 3ddb236464c9c37be85d3856362f536a20b53b99 (diff) | |
download | chromium_src-483a075709bb435ddf380aac050dc3b7a586d244.zip chromium_src-483a075709bb435ddf380aac050dc3b7a586d244.tar.gz chromium_src-483a075709bb435ddf380aac050dc3b7a586d244.tar.bz2 |
Incorporating review comments from Amit. The keyboard based back forward test only needs simple HTML
files with the meta tag to switch to Chrome. Removed the fulltab_forward_page.html amd fulltab_back_page.html
and replaced them with the sub_frame1.html and sub_frame2.html
Other changes include to use SetFocusToChrome helper function to give focus to the Chrome renderer window instead
of sending a WM_LBUTTONDOWN and to use ComStackObjectWithUninitialize mock class to ensure that things get cleaned
up correctly.
Review URL: http://codereview.chromium.org/608033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39246 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/test/data')
-rw-r--r-- | chrome_frame/test/data/fulltab_back_page.html | 16 | ||||
-rw-r--r-- | chrome_frame/test/data/fulltab_forward_page.html | 16 |
2 files changed, 0 insertions, 32 deletions
diff --git a/chrome_frame/test/data/fulltab_back_page.html b/chrome_frame/test/data/fulltab_back_page.html deleted file mode 100644 index fe0ab97..0000000 --- a/chrome_frame/test/data/fulltab_back_page.html +++ /dev/null @@ -1,16 +0,0 @@ -<html> - <head> - <meta http-equiv="x-ua-compatible" content="chrome=1" /> - <title>ChromeFrame fulltab Esc keystroke back page</title> - <script language=javascript> - function onLoad() { - // Onload handling goes here. - } - </script> - </head> - - <body onload="onLoad();"> - ChromeFrame full tab mode Esc keystroke back page. - Verifies whether the Esc keystroke navigates backwards in ChromeFrame. - </body> -</html> diff --git a/chrome_frame/test/data/fulltab_forward_page.html b/chrome_frame/test/data/fulltab_forward_page.html deleted file mode 100644 index 2f8e2e2..0000000 --- a/chrome_frame/test/data/fulltab_forward_page.html +++ /dev/null @@ -1,16 +0,0 @@ -<html> - <head> - <meta http-equiv="x-ua-compatible" content="chrome=1" /> - <title>ChromeFrame fulltab Shift-Esc keystroke forward page</title> - <script language=javascript> - function onLoad() { - // onload handling goes here. - } - </script> - </head> - - <body onload="onLoad();"> - ChromeFrame full tab mode Shift-Esc keystroke forward page. - Verifies whether the Shift-Esc keystroke navigates forward in ChromeFrame. - </body> -</html> |