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

Unified Diff: ManualTests/drag-inline-block.html

Issue 23537039: paintingRoot of a renderobject should be the renderer of its enclosingLayer RenderLayer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Created 7 years, 3 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 | « no previous file | Source/core/page/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/drag-inline-block.html
diff --git a/ManualTests/drag-inline-block.html b/ManualTests/drag-inline-block.html
new file mode 100644
index 0000000000000000000000000000000000000000..300dba249cd2310b720f73f7525a0af0915b2e10
--- /dev/null
+++ b/ManualTests/drag-inline-block.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ .container {
+ margin: 10px;
+ width: 300px;
+ height: 200px;
+ background-color: grey;
+ }
+
+ .static {
+ display: static;
+ }
+
+ .inline-block {
+ display: inline-block;
+ }
+
+ *[draggable=true] {
+ width: 100px;
+ height: 100px;
+ margin: 10px;
+ background-color: green;
+ }
+ </style>
+ </head>
+ <body>
+ <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.
+ </div>
+ </body>
+</html>
« no previous file with comments | « no previous file | Source/core/page/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698