Title: [271342] trunk/LayoutTests
Revision
271342
Author
beid...@apple.com
Date
2021-01-08 19:40:33 -0800 (Fri, 08 Jan 2021)

Log Message

Removing broken test from r271337 until I can fix it.
https://bugs.webkit.org/show_bug.cgi?id=220486

Unreviewed test gardening.

* http/tests/loading/blob-load-fail-expected.txt: Removed.
* http/tests/loading/blob-load-fail.html: Removed.
* http/tests/loading/resources/remote-blob.php: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (271341 => 271342)


--- trunk/LayoutTests/ChangeLog	2021-01-09 03:11:05 UTC (rev 271341)
+++ trunk/LayoutTests/ChangeLog	2021-01-09 03:40:33 UTC (rev 271342)
@@ -1,3 +1,14 @@
+2021-01-08  Brady Eidson  <beid...@apple.com>
+
+        Removing broken test from r271337 until I can fix it.
+        https://bugs.webkit.org/show_bug.cgi?id=220486
+
+        Unreviewed test gardening.
+
+        * http/tests/loading/blob-load-fail-expected.txt: Removed.
+        * http/tests/loading/blob-load-fail.html: Removed.
+        * http/tests/loading/resources/remote-blob.php: Removed.
+
 2021-01-08  Peng Liu  <peng.l...@apple.com>
 
         A video element needs to ignore the request to enter/exit fullscreen before the current fullscreen mode change is completed

Deleted: trunk/LayoutTests/http/tests/loading/blob-load-fail-expected.txt (271341 => 271342)


--- trunk/LayoutTests/http/tests/loading/blob-load-fail-expected.txt	2021-01-09 03:11:05 UTC (rev 271341)
+++ trunk/LayoutTests/http/tests/loading/blob-load-fail-expected.txt	2021-01-09 03:40:33 UTC (rev 271342)
@@ -1,12 +0,0 @@
-main frame - didStartProvisionalLoadForFrame
-main frame - didCommitLoadForFrame
-CONSOLE MESSAGE: Error while parsing the 'sandbox' attribute: 'allow-downloads', 'allow-presentation' are invalid sandbox flags.
-main frame - didFinishDocumentLoadForFrame
-frame "<!--frame1-->" - didStartProvisionalLoadForFrame
-frame "<!--frame1-->" - didCommitLoadForFrame
-frame "<!--frame1-->" - didFinishLoadForFrame
-main frame - didFinishLoadForFrame
-frame "<!--frame1-->" - didFinishDocumentLoadForFrame
-frame "<!--frame1-->" - didHandleOnloadEventsForFrame
-main frame - didHandleOnloadEventsForFrame
-

Deleted: trunk/LayoutTests/http/tests/loading/blob-load-fail.html (271341 => 271342)


--- trunk/LayoutTests/http/tests/loading/blob-load-fail.html	2021-01-09 03:11:05 UTC (rev 271341)
+++ trunk/LayoutTests/http/tests/loading/blob-load-fail.html	2021-01-09 03:40:33 UTC (rev 271342)
@@ -1,34 +0,0 @@
-<head>
-<script>
-if (window.testRunner) {
-    testRunner.waitUntilDone();
-    testRunner.dumpAsText();
-}
-</script>
-</head>
-<body class="">
-<div id="result-iframe-wrap" role="main">
-<iframe id="result" srcdoc="
-<!DOCTYPE html>
-<body translate=&quot;no&quot; >
-<script id=&quot;rendered-js&quot; type=&quot;module&quot;>
-    
-(async function () {
-    const req = await fetch('https://localhost:8443/loading/resources/remote-blob.php');
-
-    const blob = await req.blob();
-    const blob2 = blob.slice(5000, 10000);
-    blob2.arrayBuffer();
-    if (window.testRunner)
-        testRunner.notifyDone();
-})();
-</script>
-
- 
-</body>
- 
-"
-sandbox="allow-downloads allow-forms allow-modals allow-pointer-lock allow-popups allow-presentation  allow-scripts allow-top-navigation-by-user-activation" allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; microphone; midi; payment; vr" allowtransparency="true" allowpaymentrequest="true" allowfullscreen="true" class="result-iframe">
-</iframe>
-</div>
-</body>

Deleted: trunk/LayoutTests/http/tests/loading/resources/remote-blob.php (271341 => 271342)


--- trunk/LayoutTests/http/tests/loading/resources/remote-blob.php	2021-01-09 03:11:05 UTC (rev 271341)
+++ trunk/LayoutTests/http/tests/loading/resources/remote-blob.php	2021-01-09 03:40:33 UTC (rev 271342)
@@ -1,15 +0,0 @@
-<?php
-$file = '../../resources/balls-of-the-orient.aif';
-
-if (file_exists($file)) {
-    header("Status: 200 OK");
-    header("HTTP/1.1 200 OK");
-    header("Access-Control-Allow-Origin: *");
-    header("Content-Type: audio/x-aiff");
-    header('Content-Length: ' . filesize($file));
-    ob_clean();
-    flush();
-    readfile($file);
-    exit;
-}
-?>
\ No newline at end of file
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to