summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/constrained_files/constrained_window.html
diff options
context:
space:
mode:
authorinitial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98>2008-07-26 23:55:29 +0000
committerinitial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98>2008-07-26 23:55:29 +0000
commit09911bf300f1a419907a9412154760efd0b7abc3 (patch)
treef131325fb4e2ad12c6d3504ab75b16dd92facfed /chrome/test/data/constrained_files/constrained_window.html
parent586acc5fe142f498261f52c66862fa417c3d52d2 (diff)
downloadchromium_src-09911bf300f1a419907a9412154760efd0b7abc3.zip
chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.tar.gz
chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.tar.bz2
Add chrome to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/constrained_files/constrained_window.html')
-rw-r--r--chrome/test/data/constrained_files/constrained_window.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/test/data/constrained_files/constrained_window.html b/chrome/test/data/constrained_files/constrained_window.html
new file mode 100644
index 0000000..1f4810a
--- /dev/null
+++ b/chrome/test/data/constrained_files/constrained_window.html
@@ -0,0 +1,17 @@
+<HTML>
+ <HEAD>
+ <TITLE>
+ Parent Window
+ </TITLE>
+<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
+<!-- Begin
+function enter(url, x, y) {
+ window.open(url,'','height=320,width=300,left='+x+',top='+y);
+}
+// End -->
+</SCRIPT>
+
+ <BODY
+ onload="enter('target0.html', 10, 10); enter('target1.html', 100, 100)">
+ </BODY>
+ </HTML>