Update web-platform-tests to revision 1918e328d632ab5b15096c26bd1400dcba7dd4e5

This commit is contained in:
WPT Sync Bot 2020-09-30 08:21:28 +00:00
parent da9809caf0
commit 0092318a73
131 changed files with 1937 additions and 255 deletions

View file

@ -14,8 +14,13 @@
display: inline;
font-size: 300%;
}
span
{
color: purple;
}
</style>
<p>Test passes if background color of "Selected Text" is yellow and if each glyph of "Selected Text" is green.
<p>Test passes if background color of "Selected Text" is yellow, if the "S" glyph is purple and if the other glyphs are green.
<div>Selected Text</div>
<div><span>S</span>elected Text</div>

View file

@ -0,0 +1,35 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style>
div
{
font-size: 300%;
}
span
{
background-color: yellow;
}
span#first
{
color: purple;
}
span#second
{
color: green;
}
</style>
<p>Test passes if both "selected text" have a yellow background, if the glyphs of "1st selected text" are purple and if the glyphs of "2nd selected text" are green.
<div><span id="first">1st selected text</span></div>
<div><span id="second">2nd selected text</span></div>