OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <script src="../resources/helper.js"></script> | |
4 <style> | |
5 #region { | |
6 height: 100px; | |
7 width: 200px; | |
8 position: absolute; | |
9 top: 100px; | |
10 } | |
11 | |
12 #outside { | |
13 height: 100px; | |
14 width: 200px; | |
15 position: absolute; | |
16 top: 0px; | |
17 } | |
18 | |
19 body { | |
20 margin-top: 0; | |
21 } | |
22 | |
23 #description { | |
24 width: 600px; | |
25 position: absolute; | |
26 top: 200px; | |
27 } | |
28 </style> | |
29 </head> | |
30 <body onload="selectContentByRange(100, 10, 100, 110);"> | |
31 <div id="region">inside region inside region inside region inside region</di
v> | |
32 <div id="outside">outside region outside region outside region outside regio
n</div> | |
33 <div id="description"> | |
34 <h1><a href="https://bugs.webkit.org/show_bug.cgi?id=121501">Bug #121501
- [CSS Regions] Layout Test for selection direction</a></h1> | |
35 <p>Selection is based in DOM tree, so if you select text from "outside r
egion" to "inside region" the highlighted area is exactly the opposite to what t
he user is actually selecting.</p> | |
36 </div> | |
37 </body> | |
38 </html> | |
OLD | NEW |