aboutsummaryrefslogtreecommitdiff
path: root/exampleData/mutation/dommutation.html
diff options
context:
space:
mode:
Diffstat (limited to 'exampleData/mutation/dommutation.html')
-rw-r--r--exampleData/mutation/dommutation.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/exampleData/mutation/dommutation.html b/exampleData/mutation/dommutation.html
deleted file mode 100644
index 875a1e3..0000000
--- a/exampleData/mutation/dommutation.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script type="text/javascript" src="../../contexts/data/jquery-1.7.1.min.js"></script>
- <script type="text/javascript">
- var insertiframe = function() {
- var elt = document.createElement('iframe');
- elt.src = '../frames/dyniframetest.html';
- elt.width =600;
- elt.height=300;
- document.getElementById('frameTarget').appendChild(elt);
- };
- </script>
- </head>
-<body onload='setTimeout(insertiframe, 500)'>
- <h1>This document will contain iFrames</h1>
- <br/>
- <div id='frameTarget'></div>
-</body>
-</html>