Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Side by Side Diff: LayoutTests/fast/regions/selection/selection-direction-expected.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698