mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
22 lines
644 B
HTML
22 lines
644 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>External content tests</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<script>
|
|
h2cOptions = {useCORS: true, proxy: null};
|
|
</script>
|
|
<script type="text/javascript" src="../../test.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: Arial;
|
|
}
|
|
</style>
|
|
</head>
|
|
<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>
|