|
| 1 | +<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><!-- webkit-test-runner [ BlobRegistryTopOriginPartitioningEnabled=true BroadcastChannelOriginPartitioningEnabled=true ] --> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | +<script src="../../../../resources/testharness.js"></script> |
| 5 | +<script src="../../../../resources/testharnessreport.js"></script> |
| 6 | +<script src="../../../../resources/js-test-pre.js"></script> |
| 7 | +</head> |
| 8 | +<body> |
| 9 | +<p id="description"></p> |
| 10 | +<div id="console"></div> |
| 11 | +<script> |
| 12 | +var test = async_test("Test for creating blob in iframe and then navigating to it from same-origin iframe and cross-origin main frames."); |
| 13 | + |
| 14 | +let blobURL = ""; |
| 15 | +let step = 0; |
| 16 | +let timeoutId; |
| 17 | +let handle; |
| 18 | + |
| 19 | +function openBlobCreatingFrame(origin, step) |
| 20 | +{ |
| 21 | + debug(`Opening ${origin} as main frame with iframe origin https://localhost:8443 creating blob`); |
| 22 | + handle = open(`${origin}/local/blob/resources/main-frame-with-iframe-creating-or-navigating-to-blob.html`, "test-main-frame-create-blob"); |
| 23 | + assert_true(!!handle, `Opening ${origin} main frame for blob creation in step ${step} failed`); |
| 24 | + timeoutId = setTimeout(() => window.postMessage({ "status": "donefail", "message": `step ${step} timed out.` }, '*'), 2000); |
| 25 | +} |
| 26 | + |
| 27 | +function handleMessage(e, nextOrigin) |
| 28 | +{ |
| 29 | + let shouldStep = false; |
| 30 | + if (e.data.status) { |
| 31 | + if (e.data.status == "pass" || e.data.status == "done") |
| 32 | + testPassed(`${e.data.message}`); |
| 33 | + else if (e.data.status == "fail" || e.data.status == "donefail") |
| 34 | + testFailed(`${e.data.message}`); |
| 35 | + else |
| 36 | + testfailed(`Unexpected status: ${e.data.status}`); |
| 37 | + if (e.data.status == "done" || e.data.status == "donefail") { |
| 38 | + assert_true(e.data.url && e.data.url !== "", `Blob URL is not defined in step ${step}, status: ${e.data.status}, message: ${e.data.message}`); |
| 39 | + blobURL = encodeURI(e.data.url); |
| 40 | + shouldStep = true; |
| 41 | + } |
| 42 | + } else { |
| 43 | + testFailed(`Unexpected message: ${e.data.message}`); |
| 44 | + shouldStep = true; |
| 45 | + } |
| 46 | + |
| 47 | + if (shouldStep) { |
| 48 | + if (handle) { |
| 49 | + handle.close(); |
| 50 | + handle = undefined; |
| 51 | + } |
| 52 | + step = step + 1; |
| 53 | + if (step == 4) { |
| 54 | + // Load main frame from 127.0.0.1, iframe is loaded from localhost, create blob that is partitioned as https://localhost:8443 under http://127.0.0.1:8000. |
| 55 | + openBlobCreatingFrame(nextOrigin, step); |
| 56 | + } else if (!nextOrigin) |
| 57 | + return; |
| 58 | + else { |
| 59 | + debug(`Opening ${nextOrigin} as main frame with iframe origin https://localhost:8443`); |
| 60 | + assert_true(blobURL && blobURL !== ""); |
| 61 | + handle = open(`${nextOrigin}/local/blob/resources/main-frame-with-iframe-creating-or-navigating-to-blob.html?url=${blobURL}`, "test-main-frame"); |
| 62 | + assert_true(!!handle, `Opening ${origin} main frame for blob navigation in step ${step} failed`); |
| 63 | + timeoutId = setTimeout(() => window.postMessage({ "status": "donefail", "message": `step ${step} timed out.`, "url": blobURL }, '*'), 2000); |
| 64 | + } |
| 65 | + } |
| 66 | +} |
| 67 | + |
| 68 | +window.onload = () => { |
| 69 | + // Load main frame from localhost, iframe is loaded from localhost, blob is partitioned as https://localhost:8443 under https://localhost:8443. Blob is accessible from https://localhost:8443. |
| 70 | + openBlobCreatingFrame(`https://localhost:8443`, step); |
| 71 | +} |
| 72 | + |
| 73 | +window.addEventListener("message", (e) => { |
| 74 | + if (timeoutId) { |
| 75 | + clearTimeout(timeoutId); |
| 76 | + timeoutId = undefined; |
| 77 | + handle = undefined; |
| 78 | + } else if (handle == e.source) { |
| 79 | + // If the timeout callback was already called, then don't handle this message, it's too late. |
| 80 | + return; |
| 81 | + } |
| 82 | + |
| 83 | + if (step == 0) { |
| 84 | + // On next step, load main frame from 127.0.0.1, iframe is loaded from localhost. Blob is not accessible from http://127.0.0.1:8000 iframe. |
| 85 | + handleMessage(e, "http://127.0.0.1:8000"); |
| 86 | + } else if (step == 1) { |
| 87 | + // On next step, load main frame from http://localhost, iframe is loaded from https://localhost. Blob is not accessible from http://localhost:8000 iframe. |
| 88 | + handleMessage(e, "http://localhost:8000"); |
| 89 | + } else if (step == 2) { |
| 90 | + // On next step, load main frame from https://localhost, iframe is loaded from https://localhost. Blob is accessible from https://localhost:8443 iframe. |
| 91 | + handleMessage(e, "https://localhost:8443"); |
| 92 | + } else if (step == 3) { |
| 93 | + // On next step, load main frame from http://127.0.0.1, iframe is loaded from https://localhost. Blob is not accessible from https://localhost:8443 iframe. |
| 94 | + handleMessage(e, "http://127.0.0.1:8000"); |
| 95 | + } else if (step == 4) { |
| 96 | + // On next step, load main frame from https://localhost, iframe is loaded from https://localhost. Blob is not accessible from https://localhost iframe. |
| 97 | + handleMessage(e, "https://localhost:8443"); |
| 98 | + } else if (step == 5) { |
| 99 | + // On next step, load main frame from http://localhost, iframe is loaded from https://localhost. Blob is not accessible from http://localhost:8000 iframe. |
| 100 | + handleMessage(e, "http://localhost:8000"); |
| 101 | + } else if (step == 6) { |
| 102 | + // On next step, load main frame from http://127.0.0.1, iframe is loaded from https://localhost. Blob is accessible from http://localhost:8000 iframe. |
| 103 | + handleMessage(e, "http://127.0.0.1:8000"); |
| 104 | + } else if (step == 7) { |
| 105 | + handleMessage(e); |
| 106 | + if (step == 8 && e.data.status) { |
| 107 | + if (e.data.status == "done" || e.data.status == "donefail") |
| 108 | + test.done(); |
| 109 | + } |
| 110 | + } else { |
| 111 | + testFailed(`Unexpected step: ${step}, ${e.data.message}`); |
| 112 | + } |
| 113 | +}); |
| 114 | +</script> |
| 115 | +<script src="../../../../resources/js-test-post.js"></script> |
| 116 | +</body> |
| 117 | +</html> |
0 commit comments