mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Update web-platform-tests to revision cd0ac591860335b75cdc2576fdc57c840afec870
This commit is contained in:
parent
03fb9c5d6e
commit
8504f7d13d
288 changed files with 7779 additions and 1022 deletions
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<div style="width: 100px; height: 100px; background: green"></div>
|
|
@ -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>
|
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<div style="width: 100px; height: 100px; background: green"></div>
|
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue