Update web-platform-tests to revision 0f31ab1b094596062154092307bb9ff8e6122533

This commit is contained in:
WPT Sync Bot 2019-01-15 20:35:30 -05:00
parent 96ad6710b1
commit 372e03fe64
32 changed files with 992 additions and 222 deletions

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html class="reftest-wait">
<title>Portals rendering test</title>
<link rel="match" href="references/portals-rendering.html">
<body>
<portal src="resources/portals-rendering-portal.html" style="background-color: red; width: 100px; height: 100px"></portal>
<script>
var bc = new BroadcastChannel('portal');
bc.onmessage = function(e) {
window.requestAnimationFrame(function(ts) {
document.documentElement.classList.remove('reftest-wait');
});
bc.close();
}
</script>
</body>