Update web-platform-tests to revision 1b0f824f9ef09f035d2549ab4f6c92131ba62c0f

This commit is contained in:
WPT Sync Bot 2020-10-14 08:21:08 +00:00
parent 605c4b099a
commit 0554d61f26
85 changed files with 596 additions and 145 deletions

View file

@ -0,0 +1,3 @@
<!DOCTYPE html>
There should be a square in uniform pale green color.
<div style="width: 100px; height: 100px; background: rgba(0, 128, 0, 0.5)"></div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<title>Outline with translucent color, will-change:transform and negative-z index child</title>
<link rel="help" title="7.1. 'outline' property" href="http://www.w3.org/TR/css3-ui/#outline">
<link rel="match" href="translucent-outline-ref.html">
<style>div { will-change: transform; }</style>
There should be a square in uniform pale green color.
<div style="position: relative; top: 25px; left: 25px;
width: 50px; height: 50px;
outline: 25px solid rgba(0, 128, 0, 0.5);
background: rgba(0, 128, 0, 0.5)">
<div style="position: absolute; width: 10px; height: 10px; z-index: -1"></div>
</div>