20 lines
291 B
HTML
20 lines
291 B
HTML
---
|
|
title: canceled-image
|
|
layout: page
|
|
favicon: gray
|
|
background: gray
|
|
---
|
|
|
|
<div id="content">
|
|
<h1 style="font-size: 5vw;">
|
|
canceled-image
|
|
</h1>
|
|
</div>
|
|
|
|
|
|
<script>
|
|
var xhr= new XMLHttpRequest();
|
|
xhr.open("GET", "https://google.com/image.jpg");
|
|
xhr.send();
|
|
xhr.abort();
|
|
</script |