Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / pseudo-scale-factor.html
blob4417cc7155b14dabb503a4c2a32de00c7149b70f
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name="viewport" content="width=800">
5 <style>
6 html { font-size: 16px; }
7 body { width: 800px; margin: 0; overflow: hidden; }
8 #pseudo1:first-letter { font-size: 32px; color: red; }
9 #pseudo2::before { font-size: 32px; content: "Before!"; color: green; }
10 #pseudo2::after { font-size: 32px; content: "After!"; color: blue; }
11 </style>
13 <script src="resources/autosizingTest.js"></script>
14 </head>
15 <body>
16 <div id="pseudo1">This sentence should start with a big letter 'T' for the first letter in the color red. There should be enough text for the sentence to autosize.</div>
17 <div id="pseudo2">This text should have the word 'Before!' in big text in the color green before it and the word 'After!' in big text in the color blue after it.</div>
18 </body>
19 </html>