Update web-platform-tests to revision cd0ac591860335b75cdc2576fdc57c840afec870

This commit is contained in:
WPT Sync Bot 2020-09-16 08:20:57 +00:00
parent 03fb9c5d6e
commit 8504f7d13d
288 changed files with 7779 additions and 1022 deletions

View file

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

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<link rel="author" title="Seokho Song" href="mailto:0xdevssh@gmail.com">
<link rel="help" href="https://www.w3.org/TR/css-transforms-2/#3d-transform-rendering/">
<link rel="match" href="scrolalble-hidden-3d-transform-z-ref.html">
<style>
#container {
width: 100px;
height: 100px;
background: green;
position: relative;
transform-style: preserve-3d;
}
#scroller {
width: 100px;
height: 100px;
background: red;
position: absolute;
transform: translateZ(-1px);
overflow-y: hidden;
}
</style>
<div id="container">
<div id="scroller">
<div style="height: 300px"></div>
</div>
</div>

View file

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

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<link rel="author" title="Seokho Song" href="mailto:0xdevssh@gmail.com">
<link rel="help" href="https://www.w3.org/TR/css-transforms-2/#3d-transform-rendering/">
<link rel="match" href="scrolalble-scroll-3d-transform-z-ref.html">
<style>
#container {
width: 100px;
height: 100px;
background: green;
position: relative;
transform-style: preserve-3d;
}
#scroller {
width: 100px;
height: 100px;
background: red;
position: absolute;
transform: translateZ(-1px);
overflow-y: scroll;
}
</style>
<div id="container">
<div id="scroller">
<div style="height: 300px"></div>
</div>
</div>