| Index: content/test/data/iframe_doc_write.htm
|
| diff --git a/content/test/data/iframe_doc_write.htm b/content/test/data/iframe_doc_write.htm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f5fb1c9473620473035ca33a82db961aa0d92867
|
| --- /dev/null
|
| +++ b/content/test/data/iframe_doc_write.htm
|
| @@ -0,0 +1,17 @@
|
| +<html>
|
| +<head>
|
| +<script type="text/javascript">
|
| +
|
| +window.onload = function() {
|
| + var iframe_doc = document.getElementById('iframe_elm').contentDocument;
|
| + iframe_doc.open();
|
| + iframe_doc.write("<img src=\"fake.jpg\" />");
|
| + iframe_doc.close();
|
| +};
|
| +
|
| +</script>
|
| +</head>
|
| +<body>
|
| +<iframe id="iframe_elm"></iframe>
|
| +</body>
|
| +</html>
|
|
|