Prerequisites appear to be:
- IE11 on Windows 7
- SVG image used as a background image
- SVG image includes a font-face declaration
- Browser crashes on unload (refresh)
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>font-face in SVG as background image crasher</title> | |
| <style type="text/css"> | |
| .element { | |
| height: 200px; | |
| width: 200px; | |
| background: url(font-face.svg); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="element"></div> | |
| </body> | |
| </html> |