blob: 629175ad87a4a43948ed422936bf9dc209deaa07 [file] [log] [blame]
[email protected]871dc682012-06-11 19:35:331// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]4af886ca2012-04-07 00:05:112// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]57999812013-02-24 05:40:525#include "base/files/file_path.h"
[email protected]4af886ca2012-04-07 00:05:116#include "base/utf_string_conversions.h"
7#include "chrome/browser/ui/browser.h"
[email protected]cc872372013-01-28 21:57:078#include "chrome/browser/ui/tabs/tab_strip_model.h"
[email protected]4af886ca2012-04-07 00:05:119#include "chrome/test/base/in_process_browser_test.h"
10#include "chrome/test/base/ui_test_utils.h"
11#include "content/public/browser/web_contents.h"
12#include "googleurl/src/gurl.h"
13
14class IFrameTest : public InProcessBrowserTest {
15 protected:
16 void NavigateAndVerifyTitle(const char* file, const char* page_title) {
17 GURL url = ui_test_utils::GetTestUrl(
[email protected]650b2d52013-02-10 03:41:4518 base::FilePath(), base::FilePath().AppendASCII(file));
[email protected]4af886ca2012-04-07 00:05:1119
20 ui_test_utils::NavigateToURL(browser(), url);
21 EXPECT_EQ(ASCIIToUTF16(page_title),
[email protected]cc872372013-01-28 21:57:0722 browser()->tab_strip_model()->GetActiveWebContents()->GetTitle());
[email protected]4af886ca2012-04-07 00:05:1123 }
24};
25
26IN_PROC_BROWSER_TEST_F(IFrameTest, Crash) {
27 NavigateAndVerifyTitle("iframe.html", "iframe test");
28}
29
30IN_PROC_BROWSER_TEST_F(IFrameTest, InEmptyFrame) {
31 NavigateAndVerifyTitle("iframe_in_empty_frame.html", "iframe test");
32}