Status: FAIL | Duration: 14ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-pseudo/spelling-error-001.html
<!DOCTYPE html> <html lang="en"> <meta charset="UTF-8"> <title>CSS Pseudo-Elements Test: highlighting of spelling error (basic)</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"> <link rel="match" href="spelling-error-001-ref.html"> <style> div { font-size: 300%; } div::spelling-error { color: maroon; text-decoration: underline dotted fuchsia; } </style> <p>PREREQUISITE: User agent needs to have an enabled and capable spelling error module. If it does not, then this test does not apply to such user agent. <p>Test passes if each glyph of "txet" is maroon and if "txet" is underlined with a fuchsia dotted line. <div contenteditable="true">A txet sample</div>
/css/css-pseudo/spelling-error-001-ref.html
<!DOCTYPE html> <html lang="en"> <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 { color: maroon; text-decoration: underline dotted fuchsia; } </style> <p>PREREQUISITE: User agent needs to have an enabled and capable spelling error module. If it does not, then this test does not apply to such user agent. <p>Test passes if each glyph of "txet" is maroon and if "txet" is underlined with a fuchsia dotted line. <div contenteditable="true">A <span>txet</span> sample</div>