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

Unified Diff: ManualTests/drag-should-draw-target.html

Issue 278293002: [Regression] Fix Draggable is float:left and container is overflow:hidden (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 6 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
« no previous file with comments | « ManualTests/drag-inline-block.html ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/drag-should-draw-target.html
diff --git a/ManualTests/drag-inline-block.html b/ManualTests/drag-should-draw-target.html
similarity index 57%
rename from ManualTests/drag-inline-block.html
rename to ManualTests/drag-should-draw-target.html
index 300dba249cd2310b720f73f7525a0af0915b2e10..6498d6334c7c3a201a8ab99caffe1e242dab7d84 100644
--- a/ManualTests/drag-inline-block.html
+++ b/ManualTests/drag-should-draw-target.html
@@ -17,6 +17,10 @@
display: inline-block;
}
+ .floatleft {
+ float: left;
+ }
+
*[draggable=true] {
width: 100px;
height: 100px;
@@ -29,7 +33,14 @@
<div class="container inline-block static">
display: inline-block; position: static;
<div draggable="true">Drag Me</div>
- If the drag-icon follow the mouse pointer while dragging the above green div, the test passes.
+ If the drag-icon follows the mouse pointer while dragging the above green block, the test passes.
</div>
+
+ <div class="container" style="overflow:hidden">
+ greybox overflow:hidden; greenbox float:left;<br>
+ <div class="floatleft" draggable="true">Drag Me</div>
+ If the drag-icon follows the mouse pointer while dragging the green block to the left, the test passes.
+ </div>
+
</body>
</html>
« no previous file with comments | « ManualTests/drag-inline-block.html ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698