diff options
Diffstat (limited to 'testing/web-platform/tests/html/editing/dnd/draggable-areas/transform.html')
-rw-r--r-- | testing/web-platform/tests/html/editing/dnd/draggable-areas/transform.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/dnd/draggable-areas/transform.html b/testing/web-platform/tests/html/editing/dnd/draggable-areas/transform.html new file mode 100644 index 000000000..6800c64ad --- /dev/null +++ b/testing/web-platform/tests/html/editing/dnd/draggable-areas/transform.html @@ -0,0 +1,22 @@ +<!DOCTYPe html> +<meta charset='utf-8'> +<title>drag and drop – draggable area boundaries – transformed elements</title> +<style> +a { + display: block; + height: 200px; + width: 200px; + background-color: blue; + margin-left: 100px; + -moz-transform: rotate(-45deg) skew(15deg, 15deg); + -o-transform: rotate(-45deg) skew(15deg, 15deg); + -webkit-transform: rotate(-45deg) skew(15deg, 15deg); + transform: rotate(-45deg) skew(15deg, 15deg); +} +</style> +<ol> + <li>Try dragging the blue box below by clicking and holding <em>just</em> + outside its skewed edges. It should <em>not</em> be draggable.</li> + <li><p>Drag the blue box below. It should be draggable.</p> + +<a draggable="true" ondragstart="event.dataTransfer.effectAllowed ='copy'">TEST</a> |