| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 body { width: 600px; } | 5 body { width: 600px; } |
| 6 #footNote { font-size: 13px; } | 6 #footNote { font-size: 13px; } |
| 7 </style> | 7 </style> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 <div id="content"> | 10 <div id="content"> |
| 11 <h1 style="margin-top: 0px">Selecting text through different CSS-Region flow
s</h1> | 11 <h1 style="margin-top: 0px">Selecting text through different CSS-Region flow
s</h1> |
| 12 <div> | 12 <div> |
| 13 This text contains a footnote as a nested region what is diplayed below the
article. (1) If you start selecting | 13 This text contains a footnote as a nested region what is diplayed below the
article. (1) If you start selecting |
| 14 text from this article until somewhere in the footnote and then click so
mewhere, the selection should be cleared. | 14 text from this article until somewhere in the footnote and then click so
mewhere, the selection should be cleared. |
| 15 </div> | 15 </div> |
| 16 <div id="footNote">(1) This is a footnote. Footnotes can be quite long and g
o over several lines. This footnote | 16 <div id="footNote">(1) This is a footnote. Footnotes can be quite long and g
o over several lines. This footnote |
| 17 is nested inside the text above and displayed here with the help of css-regi
ons.</div> | 17 is nested inside the text above and displayed here with the help of css-regi
ons.</div> |
| 18 </div> | 18 </div> |
| 19 </body> | 19 </body> |
| 20 </html> | 20 </html> |
| OLD | NEW |