Chromium Code Reviews| Index: Source/web/tests/data/drag_selection.html |
| diff --git a/Source/web/tests/data/drag_selection.html b/Source/web/tests/data/drag_selection.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..75d050d100b2ed156bfaa360ef401c6bee9185b3 |
| --- /dev/null |
| +++ b/Source/web/tests/data/drag_selection.html |
| @@ -0,0 +1,35 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <head> |
|
esprehn
2015/05/25 21:28:13
Leave out html, head and body.
Miyoung Shin(g)
2015/05/31 14:01:13
Done.
And this file has merged to EventHandlerTest
|
| + <meta name="viewport" content="width=300"> |
| + |
| + <style type="text/css"> |
|
esprehn
2015/05/25 21:28:13
remove type
Miyoung Shin(g)
2015/05/31 14:01:13
Done.
|
| + body { |
| + margin: 0px; |
| + } |
| + .upper { |
| + background-color: #ffbbaa; |
| + width: 300px; |
| + height: 400px; |
| + } |
| + .lower { |
| + background-color: #ffddaa; |
| + margin: 0px; |
| + width: 300px; |
| + height: 400px; |
| + } |
| + .horizontal-line { |
| + display: block; |
| + width: 300px; |
| + height: 30px; |
| + background-color: #ccccff; |
| + } |
| + </style> |
| + </head> |
| + <body> |
| + <div class="upper"></div> |
| + <div class="lower"> |
| + <span class="horizontal-line">Line 1</span><span class="horizontal-line">Line 2</span><span class="horizontal-line">Line 3</span><span class="horizontal-line">Line 4</span><span class="horizontal-line">Line 5</span><span class="horizontal-line">Line 6</span><span class="horizontal-line">Line 7</span><span class="horizontal-line">Line 8</span><span class="horizontal-line">Line 9</span><span class="horizontal-line">Line 10</span> |
| + </div> |
| + </body> |
| +</html> |