WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
Attachment #33767
Test case for bug.
text/html
2009-07-30 03:54:36 PDT
559 bytes
no flags
Details
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>text-decoration and font-variant</title> <style type="text/css" media="screen"> p:first-child:first-line, p.work { text-transform: lowercase; font-variant: small-caps; } </style> </head> <body> <p>Doesn't work here</p> <p class='work'>Works here</p> </body> </html>