tor-browser

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

before-after-selectors-on-code-element-crash.html (290B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="http://bugs.webkit.org/show_bug.cgi?id=11197">
      3 <html
      4 <head>
      5 <style>
      6    code:before {
      7      content: counter(dummy,circle);
      8    }
      9    code:after {
     10      content: counter(dummy,square);
     11    }
     12 </style>
     13 </head>
     14 <body>
     15 <code>PASSED</code>
     16 </body>
     17 </html>