diff options
Diffstat (limited to 'testing/web-platform/tests/html/editing/dnd/selection/153.xhtml')
-rw-r--r-- | testing/web-platform/tests/html/editing/dnd/selection/153.xhtml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/dnd/selection/153.xhtml b/testing/web-platform/tests/html/editing/dnd/selection/153.xhtml new file mode 100644 index 000000000..cb122364b --- /dev/null +++ b/testing/web-platform/tests/html/editing/dnd/selection/153.xhtml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Dropping selection from text input into readonly text input</title> +<style type="text/css"> +input + {padding:1em; + width:300px;} +</style> +</head> +<body onload="document.querySelector('input').select()"> +<p><input value="Drag me"/></p> +<p>Try to drag selected text into the input below. You should not be able to drop it here.</p> +<p><input readonly="readonly" placeholder="Try to drop selected text here" onchange="document.querySelector('p+p').firstChild.nodeValue = 'FAIL'"/></p> +</body> +</html>
\ No newline at end of file |