Update web-platform-tests to revision b'56123c260eff2131bc355b66530d6f0b18b20b2c'

This commit is contained in:
WPT Sync Bot 2022-12-14 01:20:38 +00:00
parent ba48966934
commit 82db1c49ad
136 changed files with 1358 additions and 1444 deletions

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
div { width: 100px; height: 100px }
</style>
<div style="outline-style: solid; outline-color: green"></div>

View file

@ -0,0 +1,14 @@
<!doctype html>
<meta charset="utf-8">
<title>Inheriting outline-style should compute the right outline-width</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://drafts.csswg.org/css-ui-4/#outline-width">
<link rel="help" href="https://drafts.csswg.org/css-ui-4/#outline-style">
<link rel="match" href="outline-style-inherit-ref.html">
<style>
div { width: 100px; height: 100px }
</style>
<div style="outline-style: solid; outline-color: transparent">
<div style="outline-style: inherit; outline-color: green"></div>
</div>