chromium/chrome/browser/renderer_context_menu/accessibility_labels_bubble_model_browsertest.cc

// Copyright 2021 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/renderer_context_menu/accessibility_labels_bubble_model.h"

#include <memory>

#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/confirm_bubble.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/prefs/pref_service.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/test_navigation_observer.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace {

// A test class for the accessibility labels bubble.
class AccessibilityLabelsBubbleModelTest : public InProcessBrowserTest {};

}  // namespace

IN_PROC_BROWSER_TEST_F(AccessibilityLabelsBubbleModelTest, ConfirmSetsPref) {}

IN_PROC_BROWSER_TEST_F(AccessibilityLabelsBubbleModelTest,
                       CancelDoesNotSetPref) {}

IN_PROC_BROWSER_TEST_F(AccessibilityLabelsBubbleModelTest, OpenHelpPage) {}

// Tests that closing the tab with WebContents that was used to construct
// the AccessibilityLabelsBubbleModel does not cause any problems when
// opening the Help page.
// This is a regression test for crbug.com/1212500.
// Note that we do not need to test what happens when the whole browser
// closes, because when the last tab in a window closes it will close the
// bubble widget too.
IN_PROC_BROWSER_TEST_F(AccessibilityLabelsBubbleModelTest,
                       OpenHelpPageAfterWebContentsClosed) {}