mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
25 lines
674 B
HTML
25 lines
674 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>External content tests</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<script type="text/javascript" src="../../test.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: Arial;
|
|
}
|
|
</style>
|
|
<base href="http://localhost:8081/" />
|
|
</head>
|
|
<body>
|
|
<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 <base> href)</h1>
|
|
<img src="/assets/image_1.jpg" />
|
|
</body>
|
|
</html>
|