summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/data/showmodaldialog.html9
-rw-r--r--chrome/test/data/showmodaldialog_dialog.html5
-rw-r--r--chrome/test/data/showmodaldialog_dialog.js2
3 files changed, 16 insertions, 0 deletions
diff --git a/chrome/test/data/showmodaldialog.html b/chrome/test/data/showmodaldialog.html
new file mode 100644
index 0000000..4196c09
--- /dev/null
+++ b/chrome/test/data/showmodaldialog.html
@@ -0,0 +1,9 @@
+<html>
+<body onload="setTimeout('ShowDialog()', 100)">
+<script>
+function ShowDialog() {
+ window.showModalDialog("showmodaldialog_dialog.html");
+}
+</script>
+</body>
+</html> \ No newline at end of file
diff --git a/chrome/test/data/showmodaldialog_dialog.html b/chrome/test/data/showmodaldialog_dialog.html
new file mode 100644
index 0000000..cdfeb3a
--- /dev/null
+++ b/chrome/test/data/showmodaldialog_dialog.html
@@ -0,0 +1,5 @@
+<html>
+<head>
+<title>ModalDialogTitle</title>
+</head>
+</html> \ No newline at end of file
diff --git a/chrome/test/data/showmodaldialog_dialog.js b/chrome/test/data/showmodaldialog_dialog.js
new file mode 100644
index 0000000..e7cdd067
--- /dev/null
+++ b/chrome/test/data/showmodaldialog_dialog.js
@@ -0,0 +1,2 @@
+function dummy() {
+} \ No newline at end of file