Skip to content

Commit 52e0ae0

Browse files
annevkjgraham
authored andcommitted
bust cache
1 parent e30a4b3 commit 52e0ae0

3 files changed

+3
-3
lines changed

svg/embedded/image-embedding-nested-data-url-from-canvas-post-window-load.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
window.onload = () => {
2323
const image = new Image();
24-
image.src = "support/image-with-nested-data-url-images.svg";
24+
image.src = "support/image-with-nested-data-url-images.svg?" + Math.random().toString();
2525
image.onload = () => {
2626
context.drawImage(image, 0, 0, canvas.width, canvas.height);
2727
const resultImage = document.getElementById("result");

svg/embedded/image-embedding-nested-data-url-from-canvas-window-load.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
context.fillRect(0, 0, canvas.width, canvas.height);
2121

2222
const image = new Image();
23-
image.src = "support/image-with-nested-data-url-images.svg";
23+
image.src = "support/image-with-nested-data-url-images.svg?" + Math.random().toString();
2424

2525
window.onload = () => {
2626
context.drawImage(image, 0, 0, canvas.width, canvas.height);

svg/embedded/image-embedding-nested-data-url-from-canvas.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
context.fillRect(0, 0, canvas.width, canvas.height);
2121

2222
const image = new Image();
23-
image.src = "support/image-with-nested-data-url-images.svg";
23+
image.src = "support/image-with-nested-data-url-images.svg?" + Math.random().toString();
2424

2525
image.onload = () => {
2626
context.drawImage(image, 0, 0, canvas.width, canvas.height);

0 commit comments

Comments
 (0)