| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script type="text/javascript"> | |
| function CreateCircle(){ | |
| var B=""; | |
| B+="<!DOCTYPE html>"; | |
| B+="<html>"; | |
| B+="<body>"; | |
| B+="<svg style=\"width:100px;height:100px;\">"; | |
| B+="<circle cx=\"50%\" cy=\"50%\" r=\"50%\" fill=\"blue\" stroke=\"none\" />"; | |
| B+="</svg>"; | |
| B+="</body></html>"; | |
| return B; | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <iframe src="javascript:parent.CreateCircle();" width="100%" height="100%" frameborder="0" scrolling="no"></iframe> | |
| </body> | |
| </html> | |