1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/browser_features.h"
#include "chrome/browser/ui/ash/test_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/url_constants.h"
#include "chrome/common/webui_url_constants.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "third_party/blink/public/common/web_preferences/web_preferences.h"
#include "ui/base/mojom/window_show_state.mojom.h"
namespace {
class TabletModePageBehaviorTest : public ChromeOSBrowserUITest {
public:
TabletModePageBehaviorTest() = default;
TabletModePageBehaviorTest(const TabletModePageBehaviorTest&) = delete;
TabletModePageBehaviorTest& operator=(const TabletModePageBehaviorTest&) =
delete;
~TabletModePageBehaviorTest() override = default;
// ChromeOSBrowserUITest:
void SetUp() override {
scoped_feature_list_.InitAndEnableFeature(
features::kDoubleTapToZoomInTabletMode);
ChromeOSBrowserUITest::SetUp();
}
content::WebContents* GetActiveWebContents(Browser* browser) const {
return browser->tab_strip_model()->GetActiveWebContents();
}
blink::web_pref::WebPreferences GetWebKitPreferences(
content::WebContents* web_contents) const {
return web_contents->GetOrCreateWebPreferences();
}
void ValidateWebPrefs(content::WebContents* web_contents,
bool tablet_mode_enabled) const {
const blink::web_pref::WebPreferences web_prefs =
GetWebKitPreferences(web_contents);
if (tablet_mode_enabled) {
EXPECT_TRUE(web_prefs.double_tap_to_zoom_enabled);
EXPECT_TRUE(web_prefs.text_autosizing_enabled);
EXPECT_TRUE(web_prefs.shrinks_viewport_contents_to_fit);
EXPECT_TRUE(web_prefs.main_frame_resizes_are_orientation_changes);
EXPECT_FLOAT_EQ(web_prefs.default_minimum_page_scale_factor, 0.25f);
EXPECT_FLOAT_EQ(web_prefs.default_maximum_page_scale_factor, 5.0f);
} else {
EXPECT_FALSE(web_prefs.double_tap_to_zoom_enabled);
EXPECT_FALSE(web_prefs.text_autosizing_enabled);
EXPECT_FALSE(web_prefs.shrinks_viewport_contents_to_fit);
EXPECT_FALSE(web_prefs.main_frame_resizes_are_orientation_changes);
EXPECT_FLOAT_EQ(web_prefs.default_minimum_page_scale_factor, 1.0f);
EXPECT_FLOAT_EQ(web_prefs.default_maximum_page_scale_factor, 4.0f);
}
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_F(TabletModePageBehaviorTest,
TestWebKitPrefsWithTabletModeToggles) {
EXPECT_FALSE(InTabletMode());
AddBlankTabAndShow(browser());
auto* web_contents = GetActiveWebContents(browser());
ASSERT_TRUE(web_contents);
// Validate that before tablet mode is enabled, mobile-behavior-related prefs
// are disabled.
ValidateWebPrefs(web_contents, false /* tablet_mode_enabled */);
// Now enable tablet mode, and expect that the same page's web prefs get
// updated.
EnterTabletMode();
ValidateWebPrefs(web_contents, true /* tablet_mode_enabled */);
// Any newly added pages should have the correct tablet mode prefs.
Browser* browser_2 = CreateBrowser(browser()->profile());
auto* web_contents_2 = GetActiveWebContents(browser_2);
ASSERT_TRUE(web_contents_2);
ValidateWebPrefs(web_contents_2, true /* tablet_mode_enabled */);
// Disable tablet mode and expect both pages's prefs are updated.
ExitTabletMode();
ValidateWebPrefs(web_contents, false /* tablet_mode_enabled */);
ValidateWebPrefs(web_contents_2, false /* tablet_mode_enabled */);
}
IN_PROC_BROWSER_TEST_F(TabletModePageBehaviorTest, ExcludeInternalPages) {
ASSERT_TRUE(AddTabAtIndexToBrowser(
browser(), 0, GURL(chrome::kChromeUIVersionURL), ui::PAGE_TRANSITION_LINK,
false /* check_navigation_success */));
auto* web_contents = GetActiveWebContents(browser());
ASSERT_TRUE(web_contents);
EXPECT_STREQ(web_contents->GetLastCommittedURL().spec().c_str(),
chrome::kChromeUIVersionURL);
// Now enable tablet mode, and expect that this internal page's web prefs
// remain unaffected as if tablet mode is off.
EnterTabletMode();
ValidateWebPrefs(web_contents, false /* tablet_mode_enabled */);
}
IN_PROC_BROWSER_TEST_F(TabletModePageBehaviorTest, ExcludeHostedApps) {
browser()->window()->Close();
// Open a new app window.
Browser::CreateParams params = Browser::CreateParams::CreateForApp(
"test_browser_app", true /* trusted_source */, gfx::Rect(),
browser()->profile(), true);
params.initial_show_state = ui::mojom::WindowShowState::kDefault;
Browser* browser = Browser::Create(params);
AddBlankTabAndShow(browser);
ASSERT_TRUE(browser->is_type_app());
auto* web_contents = GetActiveWebContents(browser);
ASSERT_TRUE(web_contents);
// Now enable tablet mode, and expect that the page's web prefs of this hosted
// app remain unaffected as if tablet mode is off.
EnterTabletMode();
ValidateWebPrefs(web_contents, false /* tablet_mode_enabled */);
}
IN_PROC_BROWSER_TEST_F(TabletModePageBehaviorTest, IncludeNTPs) {
ASSERT_TRUE(AddTabAtIndexToBrowser(
browser(), 0, GURL(chrome::kChromeUINewTabPageURL),
ui::PAGE_TRANSITION_LINK, false /* check_navigation_success */));
auto* web_contents = GetActiveWebContents(browser());
ASSERT_TRUE(web_contents);
EXPECT_STREQ(web_contents->GetLastCommittedURL().spec().c_str(),
chrome::kChromeUINewTabPageURL);
// Mobile-style Blink prefs should be applied to the NTP in tablet mode.
EnterTabletMode();
ValidateWebPrefs(web_contents, true /* tablet_mode_enabled */);
}
} // namespace
|