tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

grammar-error-003-manual.html (922B)


      1 <!DOCTYPE html>
      2 
      3 <html lang="en">
      4 
      5  <meta charset="UTF-8">
      6 
      7  <title>CSS Pseudo-Elements Test: highlighting of grammar error</title>
      8 
      9  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
     10  <link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-selectors">
     11  <link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-styling">
     12 
     13 
     14  <style>
     15  textarea
     16    {
     17      font-size: 300%;
     18    }
     19 
     20  textarea::grammar-error
     21    {
     22      color: maroon;
     23      text-decoration: underline dotted red;
     24    }
     25  </style>
     26 
     27  <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.
     28 
     29  <p>Test passes if each glyph of "thing" is maroon and if "thing" is underlined with a red dotted line.
     30 
     31  <div><textarea cols="20" rows="2">Many thing can happen</textarea></div>