diff options
Diffstat (limited to 'testing/web-platform/tests/html/editing/dnd/datastore/023.xhtml')
-rw-r--r-- | testing/web-platform/tests/html/editing/dnd/datastore/023.xhtml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/dnd/datastore/023.xhtml b/testing/web-platform/tests/html/editing/dnd/datastore/023.xhtml new file mode 100644 index 000000000..bf58316e6 --- /dev/null +++ b/testing/web-platform/tests/html/editing/dnd/datastore/023.xhtml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>dataTransfer.clearData and reload during block element drag and drop</title> +<style type="text/css"> +div + {height:100px; + width:100px; + padding:20px; + background-color:green;} +p + div + {background-color:gray;} +</style> +<script type="application/ecmascript"> +<![CDATA[ +var dataTypes = ['text/plain', 'text/uri-list', 'application/xml', 'application/xhtml+xml', 'application/mathml+xml', 'image/svg+xml', 'text/html', 'text/x-example'], +data = ['FAIL', 'data:text/plain,FAIL', '<result>FAIL</result>', '<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Data store item</title></head><body><p>FAIL</p></body></html>', '<math xmlns="http://www.w3.org/1998/Math/MathML"><mn>1</mn></math>', '<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100px" height="50px" viewBox="0 0 100 50"><text x="0" y="40" font-size="40" fill="green">FAIL</text></svg>', '<!DOCTYPE html><html><head><title>Data store item</title></head><body><p>FAIL</p></body></html>', 'FAIL']; +function start(event) + {event.dataTransfer.effectAllowed = 'copy'; + for(var i = 0; i != dataTypes.length; i++) + {event.dataTransfer.setData(dataTypes[i], data[i]);} + for(var i = 0; i != dataTypes.length; i++) + {event.dataTransfer.clearData(dataTypes[i]);} + window.location.reload();} +function dragElement(event) + {for(var i = 0; i != dataTypes.length; i++) + {event.dataTransfer.setData(dataTypes[i], 'FAIL'); + if(event.dataTransfer.getData(dataTypes[i])) + {say('getData(' + dataTypes[i] + ') : FAIL (data store should not be readable during drag)')} + } + } +function enterElement(event) + {event.preventDefault(); + for(var i = 0; i != dataTypes.length; i++) + {event.dataTransfer.setData(dataTypes[i], 'FAIL'); + if(event.dataTransfer.getData(dataTypes[i])) + {say('getData(' + dataTypes[i] + ') : FAIL (data store should not be readable during dragenter)')} + } + } +function dataDrop(event) + {for(var i = 0; i != dataTypes.length; i++) + {say('getData(' + dataTypes[i] + ') : ' + ((event.dataTransfer.getData(dataTypes[i]) == '')?'PASS':'FAIL'));} + document.querySelector('p + div').setAttribute('style','background-color:green');} +function say(it) + {document.querySelector('pre').appendChild(document.createTextNode(it + '\n'));} +]]> +</script> +</head> +<body> +<div draggable="true" ondragstart="start(event)" ondrag="dragElement(event)"/> +<p>Drag green box above to the navy box below and drop it. Navy box should turn green and test results should appear below.</p> +<div ondragenter="enterElement(event)" ondragover="return false;" ondrop="dataDrop(event)"/> +<pre/> +</body> +</html>
\ No newline at end of file |