Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / basic / 013.html
blobc9aa97e744b6b29f0386c4c75fd6aa177fe6d520
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml">
5 <head>
6 <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" />
8 <title>Letter spacing lost for emphased text</title>
9 </head>
11 <body>
12 <h1>Letter spacing lost for emphasized text</h1>
14 <p>This example demonstrates that text inside a <code>b</code>, <code>i</code>, <code>strong</code> or <code>em</code> element loses its <code>letter-spacing</code> CSS attribute that should be inherited. This was discovered in Safari 1.0.</p>
16 <div style="letter-spacing: 0.3em">
17 <p>Text inside <b>bold</b> element.</p>
19 <p>Text inside <strong>strong</strong> element.</p>
21 <p>Text inside <i>italic</i> element.</p>
23 <p>Text inside <em>emphasis</em> element.</p>
24 </div>
25 </body>
26 </html>