Chromium Code Reviews| 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..b86d70d870b2b6235e8936f9deb4c60d8bcf6dc8 |
| --- /dev/null |
| +++ b/ManualTests/drag-inline-block.html |
| @@ -0,0 +1,34 @@ |
| +<!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> |
|
eseidel
2013/09/18 14:40:03
This test should document what the pass condition
pals
2013/09/20 13:20:30
Done. Added the pass condition as a comment on the
|
| + </div> |
| + </body> |
| +</html> |