Update web-platform-tests to revision 21461a83c51b72bcff82476c1b79a26a194e7bab

This commit is contained in:
WPT Sync Bot 2019-02-15 20:34:22 -05:00
parent ea206034ad
commit f96f9a1b78
61 changed files with 1372 additions and 376 deletions

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<div style="width: 100px; height: 100px; background: green"></div>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<title>CSS Test (Transforms): composited under rotateY(180deg) with overflow clip under perspective</title>
<link rel="help" href="http://www.w3.org/TR/css-transforms-2">
<meta name="assert" content="This tests that a composited element with default
backface-visibility is visible under rotateY(180deg) with overflow clip under
perspective.">
<link rel="match" href="composited-under-rotateY-180deg-clip-perspective-ref.html">
<div style="perspective: 1px">
<div style="transform: rotateY(180deg); overflow: hidden; width: 100px">
<div style="width: 100px; height: 100px; background: green; will-change: transform"></div>
</div>
<div style="transform: rotateY(180deg); overflow: hidden; width: 100px; backface-visibility: hidden">
<div style="width: 100px; height: 100px; background: green; will-change: transform"></div>
</div>
</div>