Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / table-cell-before-content.html
blob5789bc74a4fe53c30364133fa29ea3c7a1b37e5a
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 <title>Test Case</title>
6 <meta http-equiv="content-type" content="text/html; charset=utf-8">
8 <style type="text/css">
9 .error:before {
10 content: "You should just see a single line";
11 display: table-cell;
14 .error:after {
15 content: "of blue text.";
16 display: table-cell;
19 </style>
20 </head>
21 <body>
22 <div class="error"><div style="display:table-cell">&nbsp;</div></div>
23 <script>
24 document.body.offsetLeft;
25 document.body.style.color = 'blue';
26 </script>
27 </body>
28 </html>