forked from mirrors/gecko-dev
Automatic update from web-platform-tests Fix typos in the names of two css-transforms tests Change-Id: Idc6c29ebf843396f130bdf2900063d9f5ae67c3f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3112518 Commit-Queue: David Baron <dbaron@chromium.org> Auto-Submit: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by: David Baron <dbaron@chromium.org> Cr-Commit-Position: refs/heads/main@{#914394} -- wpt-commits: 4f637c5d278896e836dbf30c4ceb492a5a44e69a wpt-pr: 30126
26 lines
No EOL
624 B
HTML
26 lines
No EOL
624 B
HTML
<!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="scrollable-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> |