| 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 <script> | 8 <script> |
| 9 function selectText() | 9 function selectText() |
| 10 { | 10 { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 <h1 style="margin-top: 0px">Selecting text through different CSS-Region flow
s</h1> | 22 <h1 style="margin-top: 0px">Selecting text through different CSS-Region flow
s</h1> |
| 23 <div> | 23 <div> |
| 24 This text contains a footnote as a nested region what is diplayed <span id="
start">below<span> the article. (1) If you start selecting | 24 This text contains a footnote as a nested region what is diplayed <span id="
start">below<span> the article. (1) If you start selecting |
| 25 text from this article until somewhere in the footnote and then click so
mewhere, the selection should be cleared. | 25 text from this article until somewhere in the footnote and then click so
mewhere, the selection should be cleared. |
| 26 </div> | 26 </div> |
| 27 <div id="footNote">(1) This is a footnote. Footnotes can be quite long and g
o over several lines. This footnote | 27 <div id="footNote">(1) This is a footnote. Footnotes can be quite long and g
o over several lines. This footnote |
| 28 is nested inside the text <span id="end">above<span> and displayed here with
the help of css-regions.</span></div> | 28 is nested inside the text <span id="end">above<span> and displayed here with
the help of css-regions.</span></div> |
| 29 </div> | 29 </div> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |