Update web-platform-tests to revision d23db97703021bdeb4ec21ff5ce3e9de54dd4d85

This commit is contained in:
WPT Sync Bot 2020-06-12 08:22:41 +00:00
parent 54d2b7de29
commit 77784e512e
163 changed files with 3806 additions and 3068 deletions

View file

@ -1,6 +1,11 @@
<!doctype html>
<html class="reftest-wait">
<title>Rendering of iframe element with src attribute from another domain</title>
<link rel="match" href="cross-domain-iframe.sub-ref.html">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#embedded-content-rendering-rules">
<meta name="assert" content="Checks that iframe content is correctly rendered even if it is retrieved from a different domain.">
<iframe src="http://{{domains[www1]}}:{{ports[http][0]}}/images/green.png"></iframe>
<iframe id=myframe src="http://{{domains[www1]}}:{{ports[http][0]}}/images/green.png"></iframe>
<script>
myframe.onload = () => document.documentElement.classList.remove('reftest-wait');
</script>
</html>