diff --git a/Tests/LibWeb/Text/expected/video-failed-load.txt b/Tests/LibWeb/Text/expected/video-failed-load.txt
index 943960f61ce..1f72c40c2eb 100644
--- a/Tests/LibWeb/Text/expected/video-failed-load.txt
+++ b/Tests/LibWeb/Text/expected/video-failed-load.txt
@@ -1,3 +1,3 @@
failed to load: "data:"
failed to load: "file:///i-do-no-exist-i-swear"
-failed to load: "https://i-do-no-exist-i-swear.net.uk/"
+failed to load: "https://something.invalid/"
diff --git a/Tests/LibWeb/Text/input/DOM/Document-named-properties.html b/Tests/LibWeb/Text/input/DOM/Document-named-properties.html
index bc71ea323b2..08c8997bf3e 100644
--- a/Tests/LibWeb/Text/input/DOM/Document-named-properties.html
+++ b/Tests/LibWeb/Text/input/DOM/Document-named-properties.html
@@ -1,8 +1,8 @@
-
-
+
+
diff --git a/Tests/LibWeb/Text/input/css/FontFace-load-urls.html b/Tests/LibWeb/Text/input/css/FontFace-load-urls.html
index 92b22a2275c..dee0c5c6c6f 100644
--- a/Tests/LibWeb/Text/input/css/FontFace-load-urls.html
+++ b/Tests/LibWeb/Text/input/css/FontFace-load-urls.html
@@ -17,7 +17,7 @@
println("FAILED");
});
- let notExistFont = new FontFace("NotExist", "url(https://example.com/not-exist.woff)");
+ let notExistFont = new FontFace("NotExist", "url(https://something.invalid/not-exist.woff)");
await notExistFont.load().then(() => {
println("FAILED");
}, (reason) => {
diff --git a/Tests/LibWeb/Text/input/video-failed-load.html b/Tests/LibWeb/Text/input/video-failed-load.html
index 34c07971e6c..c353335cf80 100644
--- a/Tests/LibWeb/Text/input/video-failed-load.html
+++ b/Tests/LibWeb/Text/input/video-failed-load.html
@@ -3,7 +3,7 @@
const SOURCES = [
"data:",
"file:///i-do-no-exist-i-swear",
- "https://i-do-no-exist-i-swear.net.uk",
+ "https://something.invalid",
];
const runTest = source => {