1
0
Fork 0
firefox/testing/web-platform/tests/css/css-page/remote-origin-iframe-print.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
657 B
HTML

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1486995">
<link rel="match" href="remote-origin-iframe-print-ref.html">
<style>
iframe {
display: block;
width: 100px;
height: 100px;
border: none;
}
</style>
<script src="/common/get-host-info.sub.js"></script>
<p>The word "PASS" should be seen below.</p>
<script>
const iframe = document.createElement("iframe");
iframe.src = get_host_info().REMOTE_ORIGIN + "/css/css-page/resources/iframe-with-abspos.html";
document.body.appendChild(iframe);
</script>