OLD | NEW |
| (Empty) |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
2 "http://www.w3.org/TR/html401/strict.dtd"> | |
3 <html> | |
4 <head> | |
5 <title>Test</title> | |
6 | |
7 <style type="text/css"> | |
8 .block { display: block } | |
9 .runin { display: run-in } | |
10 .inline { display: inline } | |
11 | |
12 </style> | |
13 </head> | |
14 | |
15 <body> | |
16 Case A: | |
17 | |
18 <div class="block"> | |
19 <div class="runin">This should NOT</div> | |
20 <div class="inline">run in.</div> | |
21 </div> | |
22 | |
23 Case B: | |
24 | |
25 <div class="block"> | |
26 <div class="runin">This should NOT</div> | |
27 run in. | |
28 </div> | |
29 | |
30 Case C: | |
31 | |
32 <div class="block"> | |
33 <div class="runin">This should </div> | |
34 <div class="block">run in.</div> | |
35 </div> | |
36 | |
37 Case D: | |
38 | |
39 <div class="block"> | |
40 <div class="runin">This should NOT</div> | |
41 <div class="runin">run in.</div> | |
42 </div> | |
43 | |
44 </body> | |
45 </html> | |
46 | |
OLD | NEW |