/* * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /* * @test * @bug 8016675 8026736 * @summary Test for window title. * @author Bhavesh Patel * @library ../lib/ * @build JavadocTester TestWindowTitle * @run main TestWindowTitle */ public class TestWindowTitle extends JavadocTester { //Window title with JavaScript special characters. private static final String TITLE_JS_CHARS = "Testing \"Window 'Title'\" with a \\ backslash and a / " + "forward slash and a \u00e8 unicode char also a tab and also a " + "\t special character another \u0002 unicode)"; private static final String[] ARGS_JS_CHARS = new String[]{ "-d", OUTPUT_DIR + "-1", "-windowtitle", TITLE_JS_CHARS, "-sourcepath", SRC_DIR, "p1", "p2" }; private static final String[][] TEST_JS_CHARS = { { "overview-summary.html", "parent.document.title=\"Overview (Testing \\\"Window \\\'Title\\\'\\\" " + "with a \\\\ backslash and a / forward slash and a \\u00E8 unicode char " + "also a tab and also a \\t special character another \\u0002 unicode))\";" }, }; private static final String[][] NEG_TEST_JS_CHARS = { { "overview-summary.html", "parent.document.title=\"Overview (Testing \"Window \'Title\'\" " + "with a \\ backslash and a / forward slash and a \u00E8 unicode char " + "also a tab and also a \t special character another \u0002 unicode))\";" } }; //Window title with a script tag. private static final String TITLE_SCRIPT_TAG = "Testing script tag in title ."; private static final String[] ARGS_SCRIPT_TAG = new String[]{ "-d", OUTPUT_DIR + "-2", "-windowtitle", TITLE_SCRIPT_TAG, "-sourcepath", SRC_DIR, "p1", "p2" }; private static final String[][] TEST_SCRIPT_TAG = { { "overview-summary.html", "parent.document.title=\"Overview (Testing script tag in title alert" + "(\\\"Should not pop up\\\").)\";" }, { "p2/C2.html", "parent.document.title=\"C2 (Testing script tag in title alert" + "(\\\"Should not pop up\\\").)\";" } }; private static final String[][] NEG_TEST_SCRIPT_TAG = { { "overview-summary.html", "parent.document.title=\"Overview (Testing script tag in title .)\";" }, { "p2/C2.html", "parent.document.title=\"C2 (Testing script tag in title .)\";" } }; //Window title with other HTML tags. private static final String TITLE_HTML_TAGS = "Testing another
HTML
tag. Another