summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/spelling-error-002-manual.html
blob: 18c0c9dceeec0d70b439f6c8a1d74d24538e3408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>

 <html lang="en">

  <meta charset="UTF-8">

  <title>CSS Pseudo-Elements Test: highlighting of spelling 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">


  <style>
  input
    {
      font-size: 300%;
    }

  input::spelling-error
    {
      color: maroon;
      text-decoration: underline dotted red;
    }
  </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 red dotted line.

  <div><input type="text" value="A txet sample"></div>