Update web-platform-tests to revision 99a09c73e7f1d7b19ec4be2eb8ce2d3bebf52245

This commit is contained in:
WPT Sync Bot 2020-07-02 08:20:17 +00:00
parent 83b2f0de0b
commit c80439a8ff
66 changed files with 745 additions and 207 deletions

View file

@ -0,0 +1,10 @@
<!doctype html>
<title>CSS test reference</title>
<style>
div {
background: green;
width: 100px;
height: 100px;
}
</style>
<div></div>

View file

@ -0,0 +1,25 @@
<!doctype html>
<title>z-index doesn't apply to transformed content which is not positioned</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1256980">
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#z-index">
<link rel="match" href="z-index-does-not-apply-ref.html">
<style>
#a, #b {
background: green;
width: 100px;
height: 100px;
}
#a {
background: red;
z-index: 2;
transform: translateX(0);
}
#b {
z-index: 1;
transform: translateY(-100px);
}
</style>
<div id="a"></div>
<div id="b"></div>