Temporarily remove render-blocked-apis-by-stylesheed-link.tentative.html

This is a partial revert of crrev.com/c/3425981

The reason is that the test breaks WebKit Linux Leak builder:

https://ci.chromium.org/p/chromium/builders/ci/WebKit%20Linux%20Leak/b8823280670979568081

Bug: 1293987, 1271296
Change-Id: I67557c04a9ae845090676630f6067419ca57b878
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3438371
Auto-Submit: Xiaocheng Hu <xiaochengh@chromium.org>
Reviewed-by: Peter Williamson <petewil@chromium.org>
Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org>
Cr-Commit-Position: refs/heads/main@{#967032}
diff --git a/html/dom/render-blocking/render-blocked-apis-by-stylesheet-link.tentative.html b/html/dom/render-blocking/render-blocked-apis-by-stylesheet-link.tentative.html
deleted file mode 100644
index 1be31b0..0000000
--- a/html/dom/render-blocking/render-blocked-apis-by-stylesheet-link.tentative.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!doctype html>
-<title>Certain APIs should not trigger while rendering is blocked by a stylesheet link</title>
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="/resources/testdriver.js"></script>
-<script src="/resources/testdriver-vendor.js"></script>
-<script src="support/test-render-blocking.js"></script>
-<script>
-// Test case must be set up before the stylesheet, because the stylesheet is
-// script-blocking, which means we can't set it up while the stylesheet is
-// loading.
-test_render_blocked_apis(() => {
-  let color = getComputedStyle(document.querySelector('.target')).color;
-  assert_equals(color, 'rgb(255, 0, 0)');
-}, 'Render-blocking stylesheet is applied');
-</script>
-<link rel="stylesheet" href="support/target-red.css?pipe=trickle(d1)">
-<div class="target">
-  This should be red
-</div>