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

Unified Diff: Source/web/tests/data/drag_selection.html

Issue 1113323002: [Reland] Refactor the selection code in EventHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« Source/web/tests/WebFrameTest.cpp ('K') | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« Source/web/tests/WebFrameTest.cpp ('K') | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698