Created
June 11, 2020 07:20
-
-
Save image72/21f8e37ee96d00120a173dddb136c344 to your computer and use it in GitHub Desktop.
svg foreignObject
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <p>SVG as per Finkle</p> | |
| <p style="color: red;" > WARNING: NoScript barfs a hairball about it being click-jacking when you click on links inside the iframe</p> | |
| <svg width="960" height="850"> | |
| <g transform="translate(300, 0) rotate(20)"> | |
| <foreignObject x="10" y="10" width="800" height="800"> | |
| <body xmlns="http://www.w3.org/1999/xhtml"> | |
| <iframe src="http://starkravingfinkle.org/blog" style="width:700px;height:700px"></iframe> | |
| </body> | |
| </foreignObject> | |
| </g> | |
| </svg> | |
| <script type="text/javascript" src="https://gerhobbelt.github.com/bl.ocks.org-hack/fixit.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment