Update web-platform-tests to revision c063a8c9acc637e3bd72b719b46e6f2fb627da4a

This commit is contained in:
WPT Sync Bot 2020-04-03 08:19:52 +00:00
parent e66ab111a6
commit 018bc3f219
140 changed files with 2806 additions and 431 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<title>Content CSS property on img with alt and no src is honored</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="match" href="element-replacement-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1625805">
<style>
img {
content: url('resources/rect.svg');
}
</style>
<img alt="Something">

View file

@ -0,0 +1,3 @@
<!doctype html>
<title>CSS Test Reference</title>
<video poster="/images/blue.png" style="object-fit: cover; content: url(/images/yellow.png)" width=100 height=100></video>

View file

@ -0,0 +1,8 @@
<!doctype html>
<title>content: url() works (or not) consistently on replaced elements</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/2831">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1625805#c6">
<link rel="match" href="element-replacement-on-replaced-element-ref.html">
<img src="/images/blue.png" style="content: url(/images/yellow.png)" width=100 height=100>