Fix external SVG loading with proxies (#802)

This commit is contained in:
Niklas von Hertzen
2017-12-11 20:51:20 +08:00
parent d87fef11a4
commit 50608e9cd4
6 changed files with 11 additions and 10 deletions

View File

@ -15,6 +15,9 @@
<h1>External image</h1>
<img src="http://localhost:8081/assets/image2.jpg" style="border:5px solid black;" />
<h1>External svg image</h1>
<img src="http://localhost:8081/assets/image.svg" style="border:5px solid black;" />
<h1>External image (using &lt;base&gt; href)</h1>
<img src="/assets/image_1.jpg" />
</body>

View File

@ -16,5 +16,6 @@
<body>
<h1>External image (CORS)</h1>
<img src="http://localhost:8081/cors/tests/assets/image2.jpg" />
<img src="http://localhost:8081/cors/tests/assets/image.svg" />
</body>
</html>