Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / svg / as-object / svg-embedded-in-html-in-iframe.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 function CreateCircle(){
6 var B="";
7 B+="<!DOCTYPE html>";
8 B+="<html>";
9 B+="<body>";
10 B+="<svg style=\"width:100px;height:100px;\">";
11 B+="<circle cx=\"50%\" cy=\"50%\" r=\"50%\" fill=\"blue\" stroke=\"none\" />";
12 B+="</svg>";
13 B+="</body></html>";
14 return B;
15 }
16 </script>
17 </head>
18 <body>
19 <iframe src="javascript:parent.CreateCircle();" width="100%" height="100%" frameborder="0" scrolling="no"></iframe>
20 </body>
21 </html>
22