summaryrefslogtreecommitdiff
path: root/system/docshell/test/bug123696-subframe.html
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2021-11-22 11:41:22 -0500
committerMatt A. Tobin <email@mattatobin.com>2021-11-22 11:41:22 -0500
commit7572f6fb227f67f5f820019fe8afa899aa700862 (patch)
tree33e53aa11ae6107f5048f313a0e7b1e748baad0f /system/docshell/test/bug123696-subframe.html
parent3bcef0ff65fa2ab6a482543afd1b1e00dd31cfee (diff)
downloadaura-central-7572f6fb227f67f5f820019fe8afa899aa700862.tar.gz
Issue %3005 - Move docshell/ to system/
Diffstat (limited to 'system/docshell/test/bug123696-subframe.html')
-rw-r--r--system/docshell/test/bug123696-subframe.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/docshell/test/bug123696-subframe.html b/system/docshell/test/bug123696-subframe.html
new file mode 100644
index 000000000..136d0a184
--- /dev/null
+++ b/system/docshell/test/bug123696-subframe.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <script>
+ function change() {
+ return "<html><body>change</body></html>";
+ }
+ function change2() {
+ return "<html><body>change2</body></html>";
+ }
+ </script>
+ </head>
+ <body>
+ <iframe src="javascript:parent.change()"></iframe>
+ </body>
+</html>