Update web-platform-tests to revision 3adb0f89d80bb92ea1a458b3fbe461f7803549a9

This commit is contained in:
WPT Sync Bot 2020-05-05 08:18:46 +00:00
parent 173bfadaa7
commit f3e7a5cac0
119 changed files with 2706 additions and 282 deletions

View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>CSS Pseudo-Elements Test: highlighting of grammar error</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-selectors">
<link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-styling">
<meta content="" name="flags">
<style>
input
{
font-size: 300%;
}
input::grammar-error
{
color: maroon;
text-decoration: underline dotted red;
}
</style>
<p>PREREQUISITE: User agent needs to have an enabled and capable grammar error module. If it does not, then this test does not apply to such user agent.
<p>Test passes if each glyph of "thing" is maroon and if "thing" is underlined with a red dotted line.
<div><input type="text" value="Many thing can happen"></div>