mirror of
https://github.com/servo/servo.git
synced 2025-07-02 21:13:39 +01:00
17 lines
566 B
HTML
17 lines
566 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<title>Portals rendering test</title>
|
|
<link rel="match" href="references/portals-rendering.html">
|
|
<body>
|
|
<script>
|
|
var portal = document.createElement('portal');
|
|
portal.src = 'resources/portals-rendering-portal.html';
|
|
portal.style = 'background-color: red; width: 100px; height: 100px';
|
|
portal.onmessage = e => {
|
|
window.requestAnimationFrame(function(ts) {
|
|
document.documentElement.classList.remove('reftest-wait');
|
|
});
|
|
}
|
|
document.body.appendChild(portal);
|
|
</script>
|
|
</body>
|