Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / line-thickness-underline-strikethrough-overline.html
blob2a6dcd14741c11f9c9f6646477aac9ae6eae299e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body { overflow: hidden; }
6 p {
7 color: rgba(255,0,0,.4);
8 margin: 5px;
9 white-space: nowrap;
11 </style>
12 </head>
13 <body>
14 <div id="underline20">
15 <p style="font: bold 20px Georgia;text-decoration: underline;">
16 Check if the underline is thick enough for 20px
17 </p>
18 </div>
19 <div id="underline40">
20 <p style="font: bold 40px Georgia;text-decoration: underline">
21 Check if the underline is thick enough for 40px
22 </p>
23 </div>
24 <p id="linethrough20" style="font: bold 20px Georgia;text-decoration: line-through;">
25 Check if the line-through is thick enough for 20px
26 </p>
27 <p id="linethrough40"style="font: bold 40px Georgia;text-decoration: line-through">
28 Check if the line-through is thick enough for 40px
29 </p>
30 <p id="overline20"style="font: bold 20px Georgia;text-decoration: overline;">
31 Check if the overline is thick enough for 20px
32 </p>
33 <p id="overline40" style="font: bold 40px Georgia;text-decoration: overline">
34 Check if the overline is thick enough for 40px
35 </p>
36 </body>
37 </html>