mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Update web-platform-tests to revision b'49819d78d44b87d5ebb076c5b005dcbfc630c24f'
This commit is contained in:
parent
b1d90f871d
commit
489f4ac90d
36 changed files with 110 additions and 215 deletions
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test: preserve-3d on pseudo elements</title>
|
||||
<link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
|
||||
<style>
|
||||
div {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-color: green;
|
||||
}
|
||||
</style>
|
||||
<div></div>
|
||||
</div>
|
|
@ -0,0 +1,24 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test: preserve-3d on pseudo elements</title>
|
||||
<link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/">
|
||||
<link rel="match" href="preserve3d-pseudo-element-ref.html">
|
||||
<style>
|
||||
div {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
transform: rotateX(90deg);
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
|
||||
div::before {
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
transform: rotateX(90deg);
|
||||
content: '';
|
||||
background-color: green;
|
||||
}
|
||||
</style>
|
||||
<div></div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue