Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / font-face-synthetic-bold-italic.html
blob41aad40b2dad7ac14cbd9705b8280eb5ac63762f
1 <style>
2 @font-face {
3 font-family: family1;
4 src: url(../../resources/Ahem.ttf);
5 /* font-style: and font-weight: properties are not set. */
7 </style>
8 <p>
9 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=34147">https://bugs.webkit.org/show_bug.cgi?id=34147</a> If @font-face does not provide an explicit italic/bold variant, regular is used</i>.
10 </p>
11 <p>Ahem regular:</p><p style="font-family: family1">Ahem regular</p>
12 <p>Ahem synthetic bold:</p><strong><p style="font-family: family1">Ahem synthetic bold</p></strong>
13 <p>Ahem synthetic italic:</p><i><p style="font-family: family1">Ahem synthetic italic</p></i>
14 <p>Ahem synthetic bold italic:</p><strong><i><p style="font-family: family1">Ahem synthetic bold italic</p></i></strong>
15 <script>
16 if (window.testRunner) {
17 testRunner.waitUntilDone();
18 document.body.offsetTop;
19 setTimeout(function() { testRunner.notifyDone(); }, 100);
21 </script>